summary refs log tree commit diff
path: root/pkgs/development/python-modules/funcsigs
diff options
context:
space:
mode:
authorwisut hantanong <wizzup@gmail.com>2017-07-28 14:32:38 +0700
committerwisut hantanong <wizzup@gmail.com>2017-07-28 16:07:36 +0700
commite77f62df0fcbc118c539501a0b286d09e8bd8897 (patch)
tree3570a5ef9292e21e6841203b15b1f2c4c15f2d26 /pkgs/development/python-modules/funcsigs
parentf970ee8e7e923b18c2bfe6f36594fbedaaaeaf70 (diff)
downloadnixpkgs-e77f62df0fcbc118c539501a0b286d09e8bd8897.tar
nixpkgs-e77f62df0fcbc118c539501a0b286d09e8bd8897.tar.gz
nixpkgs-e77f62df0fcbc118c539501a0b286d09e8bd8897.tar.bz2
nixpkgs-e77f62df0fcbc118c539501a0b286d09e8bd8897.tar.lz
nixpkgs-e77f62df0fcbc118c539501a0b286d09e8bd8897.tar.xz
nixpkgs-e77f62df0fcbc118c539501a0b286d09e8bd8897.tar.zst
nixpkgs-e77f62df0fcbc118c539501a0b286d09e8bd8897.zip
python.pkgs.funcsigs: move to separate expression
Diffstat (limited to 'pkgs/development/python-modules/funcsigs')
-rw-r--r--pkgs/development/python-modules/funcsigs/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/funcsigs/default.nix b/pkgs/development/python-modules/funcsigs/default.nix
new file mode 100644
index 00000000000..67ee9779073
--- /dev/null
+++ b/pkgs/development/python-modules/funcsigs/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, unittest2 }:
+
+buildPythonPackage rec {
+  pname = "funcsigs";
+  version = "1.0.2";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0l4g5818ffyfmfs1a924811azhjj8ax9xd1cffr1mzd3ycn0zfx7";
+  };
+
+  buildInputs = [ unittest2 ];
+
+  meta = with stdenv.lib; {
+    description = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+";
+    homepage = "https://github.com/aliles/funcsigs";
+    maintainers = with maintainers; [ garbas ];
+    license = licenses.asl20;
+  };
+}