1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 jinja2, 6 setuptools, 7 rope, 8 isPy27, 9}: 10 11buildPythonPackage rec { 12 pname = "nixpkgs-pytools"; 13 version = "1.3.0"; 14 format = "setuptools"; 15 disabled = isPy27; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "11skcbi1lf9qcv9j5ikifb4pakhbbygqpcmv3390j7gxsa85cn19"; 20 }; 21 22 propagatedBuildInputs = [ 23 jinja2 24 setuptools 25 rope 26 ]; 27 28 # tests require network .. 29 doCheck = false; 30 31 meta = with lib; { 32 description = "Tools for removing the tedious nature of creating nixpkgs derivations"; 33 homepage = "https://github.com/nix-community/nixpkgs-pytools"; 34 license = licenses.mit; 35 maintainers = [ ]; 36 }; 37}