pythonPackages.pasteScript: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-25 21:03:55 -04:00
committed by Frederik Rietdijk
parent 04accec770
commit 7dc8b993d6
2 changed files with 34 additions and 20 deletions

View File

@@ -0,0 +1,32 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, six
, paste
, PasteDeploy
, cheetah
, argparse
}:
buildPythonPackage rec {
version = "1.7.5";
pname = "PasteScript";
src = fetchPypi {
inherit pname version;
sha256 = "2b685be69d6ac8bc0fe6f558f119660259db26a15e16a4943c515fbee8093539";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ six paste PasteDeploy cheetah argparse ];
doCheck = false;
meta = with stdenv.lib; {
description = "A pluggable command-line frontend, including commands to setup package file layouts";
homepage = http://pythonpaste.org/script/;
license = licenses.mit;
};
}