mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #209612 from r-ryantm/auto-update/python310Packages.pastescript
python310Packages.pastescript: 3.2.1 -> 3.3.0
This commit is contained in:
commit
d544b50ed3
@ -7,16 +7,20 @@
|
||||
, six
|
||||
, paste
|
||||
, pastedeploy
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pastescript";
|
||||
version = "3.2.1";
|
||||
version = "3.3.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "PasteScript";
|
||||
inherit version;
|
||||
sha256 = "f3ef819785e1b284e6fc108a131bce7e740b18255d96cd2e99ee3f00fd452468";
|
||||
hash = "sha256-3eyAGhOsZn4JTt3ij5AhLN6nvcmhjUNxsI9abvfS66I=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@ -27,9 +31,15 @@ buildPythonPackage rec {
|
||||
|
||||
# test suite seems to unset PYTHONPATH
|
||||
doCheck = false;
|
||||
checkInputs = [ nose pytestCheckHook ];
|
||||
|
||||
pythonNamespaces = [ "paste" ];
|
||||
checkInputs = [
|
||||
nose
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonNamespaces = [
|
||||
"paste"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
"appsetup/testfiles"
|
||||
|
Loading…
Reference in New Issue
Block a user