entry-points-txt: init at 0.1.0
This commit is contained in:
parent
97452c285c
commit
a5fbf1487a
21
pkgs/development/python-modules/entry-points-txt/default.nix
Normal file
21
pkgs/development/python-modules/entry-points-txt/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "entry-points-txt";
|
||||
version = "0.1.0";
|
||||
format = "wheel";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/jwodder/entry-points-txt/releases/download/v0.1.0/entry_points_txt-0.1.0-py3-none-any.whl";
|
||||
sha256 = "29773bed3d9d337766a394e19d6f7ab0be3ed7d6f3ebb753ff0f7f48f056aa8e";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/jwodder/entry-points-txt";
|
||||
description = "Read & write entry_points.txt files";
|
||||
license = with licenses; [ mit ];
|
||||
};
|
||||
}
|
@ -2434,6 +2434,8 @@ in {
|
||||
routerFeatures = true;
|
||||
};
|
||||
|
||||
entry-points-txt = callPackage ../development/python-modules/entry-points-txt { };
|
||||
|
||||
entrypoint2 = callPackage ../development/python-modules/entrypoint2 { };
|
||||
|
||||
entrypoints = callPackage ../development/python-modules/entrypoints { };
|
||||
|
Loading…
Reference in New Issue
Block a user