about summary refs log tree commit diff
path: root/pkgs/development/python-modules/astunparse/default.nix
blob: 703a6e68167f5b887c0187d1aa588e7433a85912 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv
, fetchPypi
, buildPythonPackage
, six
, wheel
 }:

buildPythonPackage rec {
  pname = "astunparse";
  version =  "1.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d27b16fb33dea0778c5a2c01801554eae0d3f8a8d6f604f15627589c3d6f11ca";
  };

  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 ];
  };
}