python.packages.astunparse: init at 1.5.0
This commit is contained in:
parent
1b6dcf4936
commit
48696cf4fe
17
pkgs/development/python-modules/astunparse/default.nix
Normal file
17
pkgs/development/python-modules/astunparse/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ stdenv, fetchPypi, buildPythonPackage, six }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "astunparse";
|
||||||
|
version = "1.5.0";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1kc9lm2jvfcip3z8snj04dar5a9jh857a704m6lvcv4xclm3rpsm";
|
||||||
|
};
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
doCheck = false; # no tests
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "This is a factored out version of unparse found in the Python source distribution";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ jyp ];
|
||||||
|
};
|
||||||
|
}
|
@ -18171,6 +18171,8 @@ EOF
|
|||||||
|
|
||||||
spectral-cube = callPackage ../development/python-modules/spectral-cube { };
|
spectral-cube = callPackage ../development/python-modules/spectral-cube { };
|
||||||
|
|
||||||
|
astunparse = callPackage ../development/python-modules/astunparse { };
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
in fix' (extends overrides packages)
|
in fix' (extends overrides packages)
|
||||||
|
Loading…
Reference in New Issue
Block a user