python3Packages.pathable: init at 0.4.0

This commit is contained in:
Fabian Affolter 2022-03-26 21:56:15 +01:00
parent 74c1fd0b5e
commit 3f484044b0
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, poetry-core
}:
buildPythonPackage rec {
pname = "pathable";
version = "0.4.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "p1c2u";
repo = pname;
rev = version;
hash = "sha256-3qekweG+o7f6nm1cnCEHrWYn/fQ42GZrZkPwGbZcU38=";
};
nativeBuildInputs = [
poetry-core
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
sed -i "/--cov/d" pyproject.toml
'';
pythonImportsCheck = [
"pathable"
];
meta = with lib; {
description = "Library for object-oriented paths";
homepage = "https://github.com/p1c2u/pathable";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5974,6 +5974,8 @@ in {
path-and-address = callPackage ../development/python-modules/path-and-address { };
pathable = callPackage ../development/python-modules/pathable { };
pathlib2 = callPackage ../development/python-modules/pathlib2 { };
pathlib = callPackage ../development/python-modules/pathlib { };