entry-points-txt: init at 0.1.0

This commit is contained in:
ayazhafiz 2021-10-31 21:45:08 -04:00
parent 97452c285c
commit a5fbf1487a
2 changed files with 23 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };