2017-06-06 02:26:49 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, setuptools_scm
|
2019-10-16 08:22:00 -07:00
|
|
|
, pytestCheckHook
|
2018-12-20 06:42:41 -08:00
|
|
|
, pytest-flake8
|
2017-06-06 02:26:49 -07:00
|
|
|
, glibcLocales
|
2018-02-18 10:32:00 -08:00
|
|
|
, packaging
|
2018-11-04 02:35:08 -08:00
|
|
|
, isPy27
|
2019-10-16 08:22:00 -07:00
|
|
|
, isPy38
|
2018-11-04 02:35:08 -08:00
|
|
|
, backports_os
|
|
|
|
, importlib-metadata
|
2019-08-17 08:24:18 -07:00
|
|
|
, fetchpatch
|
2017-06-06 02:26:49 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "path.py";
|
2019-08-17 08:24:18 -07:00
|
|
|
version = "12.0.1";
|
2017-06-06 02:26:49 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-17 08:24:18 -07:00
|
|
|
sha256 = "9f2169633403aa0423f6ec000e8701dd1819526c62465f5043952f92527fea0f";
|
2017-06-06 02:26:49 -07:00
|
|
|
};
|
|
|
|
|
2019-10-16 08:22:00 -07:00
|
|
|
checkInputs = [ pytestCheckHook pytest-flake8 glibcLocales packaging ];
|
2018-02-18 10:32:00 -08:00
|
|
|
buildInputs = [ setuptools_scm ];
|
2018-11-04 02:35:08 -08:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
importlib-metadata
|
|
|
|
] ++ lib.optional isPy27 backports_os
|
|
|
|
;
|
2017-06-06 02:26:49 -07:00
|
|
|
|
2018-11-04 02:35:08 -08:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
2017-06-06 02:26:49 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A module wrapper for os.path";
|
2017-11-10 13:13:27 -08:00
|
|
|
homepage = https://github.com/jaraco/path.py;
|
2017-06-06 02:26:49 -07:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
|
|
|
|
2019-10-16 08:22:00 -07:00
|
|
|
# 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;
|
2019-08-17 08:24:18 -07:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/jaraco/path.py/commit/02eb16f0eb2cdc0015972ce963357aaa1cd0b84b.patch;
|
|
|
|
sha256 = "0bqa8vjwil7jn35a6984adcm24pvv3pjkhszv10qv6yr442d1mk9";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-11-09 03:26:09 -08:00
|
|
|
}
|