Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / astunparse / default.nix
blobb32df24f5bbd072831fe55c06fded56effdb3642
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , six
5 , wheel
6  }:
8 buildPythonPackage rec {
9   pname = "astunparse";
10   version =  "1.6.3";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872";
15   };
17   propagatedBuildInputs = [ six wheel ];
19   # tests not included with pypi release
20   doCheck = false;
22   meta = with lib; {
23     description = "This is a factored out version of unparse found in the Python source distribution";
24     homepage = "https://github.com/simonpercivall/astunparse";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ jyp ];
27   };