summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/entry-points-txt
diff options
context:
space:
mode:
authorayazhafiz <ayaz.hafiz.1@gmail.com>2021-10-31 21:45:08 -0400
committerayazhafiz <ayaz.hafiz.1@gmail.com>2021-11-01 18:58:24 -0400
commita5fbf1487adcd2c1171bb4d0da17898381d01234 (patch)
tree145b883f6e4aeec8320f77b871ad5566b1f55607 /pkgs/development/python-modules/entry-points-txt
parentheaderparser: init at 0.4.0 (diff)
downloadnixpkgs-a5fbf1487adcd2c1171bb4d0da17898381d01234.tar.gz
entry-points-txt: init at 0.1.0
Diffstat (limited to 'pkgs/development/python-modules/entry-points-txt')
-rw-r--r--pkgs/development/python-modules/entry-points-txt/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/entry-points-txt/default.nix b/pkgs/development/python-modules/entry-points-txt/default.nix
new file mode 100644
index 000000000000..04fc2cd0b7b3
--- /dev/null
+++ b/pkgs/development/python-modules/entry-points-txt/default.nix
@@ -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 ];
+ };
+}