summary refs log tree commit diff
path: root/pkgs/development/python-modules/first
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2017-03-12 18:10:04 +0000
committerJörg Thalheim <joerg@thalheim.io>2017-03-13 22:08:45 +0100
commit5e701625de8d68c1436c71f69c098b33b0445808 (patch)
treecc0b6d0ee4f9f3069b7f382a94a238697480c0c3 /pkgs/development/python-modules/first
parentf5a55163555b2520afafc5acb0174982905e7ed8 (diff)
downloadnixlib-5e701625de8d68c1436c71f69c098b33b0445808.tar
nixlib-5e701625de8d68c1436c71f69c098b33b0445808.tar.gz
nixlib-5e701625de8d68c1436c71f69c098b33b0445808.tar.bz2
nixlib-5e701625de8d68c1436c71f69c098b33b0445808.tar.lz
nixlib-5e701625de8d68c1436c71f69c098b33b0445808.tar.xz
nixlib-5e701625de8d68c1436c71f69c098b33b0445808.tar.zst
nixlib-5e701625de8d68c1436c71f69c098b33b0445808.zip
pythonPackages.first: init at 2.0.1
Diffstat (limited to 'pkgs/development/python-modules/first')
-rw-r--r--pkgs/development/python-modules/first/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/first/default.nix b/pkgs/development/python-modules/first/default.nix
new file mode 100644
index 000000000000..5ecbff90442d
--- /dev/null
+++ b/pkgs/development/python-modules/first/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+let
+  pname = "first";
+  version = "2.0.1";
+in
+buildPythonPackage {
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0pn9hl2y0pz61la1xhkdz6vl9i2dg3nh0ksizcf0f9ybh8sxxcrv";
+  };
+
+  doCheck = false; # no tests
+
+  meta = with stdenv.lib; {
+    description = "The function you always missed in Python";
+    homepage = https://github.com/hynek/first/;
+    license = licenses.mit;
+    maintainers = with maintainers; [ zimbatm ];
+  };
+}