nixpkgs/pkgs/development/python-modules/pastescript/default.nix

32 lines
628 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, nose
, six
, paste
, PasteDeploy
, cheetah
}:
buildPythonPackage rec {
2019-10-24 07:47:41 +01:00
version = "3.2.0";
pname = "PasteScript";
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:41 +01:00
sha256 = "9b0f5c0f1c6a510a353fa7c3dc4fdaab9071462d60d24573de76a001fbc172ac";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ six paste PasteDeploy cheetah ];
doCheck = false;
meta = with stdenv.lib; {
description = "A pluggable command-line frontend, including commands to setup package file layouts";
2020-01-10 20:17:37 +00:00
homepage = https://github.com/cdent/pastescript/;
license = licenses.mit;
};
}