about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-11-26 15:19:26 -0500
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-11-27 20:31:12 -0500
commit0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9 (patch)
tree557db0cd4413548e3c1b5508ed7720aec65fa880
parent5087dcf24759bf16fd3a7b1330b079d72404d7be (diff)
downloadnixlib-0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9.tar
nixlib-0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9.tar.gz
nixlib-0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9.tar.bz2
nixlib-0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9.tar.lz
nixlib-0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9.tar.xz
nixlib-0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9.tar.zst
nixlib-0e3c1e7801e8db0ac0887206bab9d6d717ef0eb9.zip
pythonPackages.astunparse: 1.5.0 -> 1.6.1
-rw-r--r--pkgs/development/python-modules/astunparse/default.nix21
1 files changed, 16 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/astunparse/default.nix b/pkgs/development/python-modules/astunparse/default.nix
index 4c46f93b547c..703a6e68167f 100644
--- a/pkgs/development/python-modules/astunparse/default.nix
+++ b/pkgs/development/python-modules/astunparse/default.nix
@@ -1,16 +1,27 @@
-{ stdenv, fetchPypi, buildPythonPackage, six }:
+{ stdenv
+, fetchPypi
+, buildPythonPackage
+, six
+, wheel
+ }:
 
 buildPythonPackage rec {
   pname = "astunparse";
-  version =  "1.5.0";
+  version =  "1.6.1";
+
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1kc9lm2jvfcip3z8snj04dar5a9jh857a704m6lvcv4xclm3rpsm";
+    sha256 = "d27b16fb33dea0778c5a2c01801554eae0d3f8a8d6f604f15627589c3d6f11ca";
   };
-  propagatedBuildInputs = [ six ];
-  doCheck = false; # no tests
+
+  propagatedBuildInputs = [ six wheel ];
+
+  # tests not included with pypi release
+  doCheck = false;
+
   meta = with stdenv.lib; {
     description = "This is a factored out version of unparse found in the Python source distribution";
+    homepage = https://github.com/simonpercivall/astunparse;
     license = licenses.bsd3;
     maintainers = with maintainers; [ jyp ];
   };