Files
nixpkgs/pkgs/development/python-modules/astunparse/default.nix
T

29 lines
643 B
Nix
Raw Normal View History

{ lib, stdenv
2018-11-26 15:19:26 -05:00
, fetchPypi
, buildPythonPackage
, six
, wheel
}:
2018-06-08 15:13:47 +02:00
buildPythonPackage rec {
pname = "astunparse";
2019-12-29 10:28:05 +01:00
version = "1.6.3";
2018-11-26 15:19:26 -05:00
2018-06-08 15:13:47 +02:00
src = fetchPypi {
inherit pname version;
2019-12-29 10:28:05 +01:00
sha256 = "5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872";
2018-06-08 15:13:47 +02:00
};
2018-11-26 15:19:26 -05:00
propagatedBuildInputs = [ six wheel ];
# tests not included with pypi release
doCheck = false;
meta = with lib; {
2018-06-08 15:13:47 +02:00
description = "This is a factored out version of unparse found in the Python source distribution";
homepage = "https://github.com/simonpercivall/astunparse";
2018-06-08 15:13:47 +02:00
license = licenses.bsd3;
maintainers = with maintainers; [ jyp ];
};
}