pythonPackages.pathpy: 11.5.2 -> 12.0.1 in case of Python 3
This commit is contained in:
parent
b3ddab852a
commit
18a3973448
42
pkgs/development/python-modules/path.py/2.nix
Normal file
42
pkgs/development/python-modules/path.py/2.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, setuptools_scm
|
||||||
|
, pytest
|
||||||
|
, pytest-flake8
|
||||||
|
, glibcLocales
|
||||||
|
, packaging
|
||||||
|
, isPy27
|
||||||
|
, backports_os
|
||||||
|
, importlib-metadata
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "path.py";
|
||||||
|
version = "11.5.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "de7cd643affbc23e56533a6e8d551ecdee4983501a08c24e4e71565202d8cdaa";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest pytest-flake8 glibcLocales packaging ];
|
||||||
|
buildInputs = [ setuptools_scm ];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
importlib-metadata
|
||||||
|
] ++ lib.optional isPy27 backports_os
|
||||||
|
;
|
||||||
|
|
||||||
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A module wrapper for os.path";
|
||||||
|
homepage = https://github.com/jaraco/path.py;
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
};
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
# ignore performance test which may fail when the system is under load
|
||||||
|
py.test -v -k 'not TestPerformance'
|
||||||
|
'';
|
||||||
|
}
|
@ -9,15 +9,16 @@
|
|||||||
, isPy27
|
, isPy27
|
||||||
, backports_os
|
, backports_os
|
||||||
, importlib-metadata
|
, importlib-metadata
|
||||||
|
, fetchpatch
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "path.py";
|
pname = "path.py";
|
||||||
version = "11.5.2";
|
version = "12.0.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "de7cd643affbc23e56533a6e8d551ecdee4983501a08c24e4e71565202d8cdaa";
|
sha256 = "9f2169633403aa0423f6ec000e8701dd1819526c62465f5043952f92527fea0f";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest pytest-flake8 glibcLocales packaging ];
|
checkInputs = [ pytest pytest-flake8 glibcLocales packaging ];
|
||||||
@ -39,4 +40,12 @@ buildPythonPackage rec {
|
|||||||
# ignore performance test which may fail when the system is under load
|
# ignore performance test which may fail when the system is under load
|
||||||
py.test -v -k 'not TestPerformance'
|
py.test -v -k 'not TestPerformance'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = https://github.com/jaraco/path.py/commit/02eb16f0eb2cdc0015972ce963357aaa1cd0b84b.patch;
|
||||||
|
sha256 = "0bqa8vjwil7jn35a6984adcm24pvv3pjkhszv10qv6yr442d1mk9";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -4086,7 +4086,10 @@ in {
|
|||||||
|
|
||||||
pathlib2 = callPackage ../development/python-modules/pathlib2 { };
|
pathlib2 = callPackage ../development/python-modules/pathlib2 { };
|
||||||
|
|
||||||
pathpy = callPackage ../development/python-modules/path.py { };
|
pathpy = if isPy3k then
|
||||||
|
callPackage ../development/python-modules/path.py { }
|
||||||
|
else
|
||||||
|
callPackage ../development/python-modules/path.py/2.nix { };
|
||||||
|
|
||||||
paypalrestsdk = callPackage ../development/python-modules/paypalrestsdk { };
|
paypalrestsdk = callPackage ../development/python-modules/paypalrestsdk { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user