1{ stdenv, fetchPypi, buildPythonPackage, six }:
2
3buildPythonPackage rec {
4 pname = "astunparse";
5 version = "1.5.0";
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "1kc9lm2jvfcip3z8snj04dar5a9jh857a704m6lvcv4xclm3rpsm";
9 };
10 propagatedBuildInputs = [ six ];
11 doCheck = false; # no tests
12 meta = with stdenv.lib; {
13 description = "This is a factored out version of unparse found in the Python source distribution";
14 license = licenses.bsd3;
15 maintainers = with maintainers; [ jyp ];
16 };
17}