nixpkgs/pkgs/development/python-modules/path.py/default.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2017-06-06 09:26:49 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, setuptools_scm
, pytestCheckHook
2018-12-20 14:42:41 +00:00
, pytest-flake8
2017-06-06 09:26:49 +00:00
, glibcLocales
2018-02-18 18:32:00 +00:00
, packaging
2018-11-04 10:35:08 +00:00
, isPy27
, isPy38
2018-11-04 10:35:08 +00:00
, backports_os
, importlib-metadata
, fetchpatch
2017-06-06 09:26:49 +00:00
}:
buildPythonPackage rec {
pname = "path.py";
version = "12.0.1";
2017-06-06 09:26:49 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "9f2169633403aa0423f6ec000e8701dd1819526c62465f5043952f92527fea0f";
2017-06-06 09:26:49 +00:00
};
checkInputs = [ pytestCheckHook pytest-flake8 glibcLocales packaging ];
2018-02-18 18:32:00 +00:00
buildInputs = [ setuptools_scm ];
2018-11-04 10:35:08 +00:00
propagatedBuildInputs = [
importlib-metadata
] ++ lib.optional isPy27 backports_os
;
2017-06-06 09:26:49 +00:00
2018-11-04 10:35:08 +00:00
LC_ALL = "en_US.UTF-8";
2017-06-06 09:26:49 +00:00
meta = {
description = "A module wrapper for os.path";
homepage = "https://github.com/jaraco/path.py";
2017-06-06 09:26:49 +00:00
license = lib.licenses.mit;
};
# ignore performance test which may fail when the system is under load
# test_version fails with 3.8 https://github.com/jaraco/path.py/issues/172
disabledTests = [ "TestPerformance" ] ++ lib.optionals isPy38 [ "test_version"];
dontUseSetuptoolsCheck = true;
patches = [
(fetchpatch {
url = "https://github.com/jaraco/path.py/commit/02eb16f0eb2cdc0015972ce963357aaa1cd0b84b.patch";
sha256 = "0bqa8vjwil7jn35a6984adcm24pvv3pjkhszv10qv6yr442d1mk9";
})
];
}