mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
python3Packages.pathable: init at 0.4.0
This commit is contained in:
parent
74c1fd0b5e
commit
3f484044b0
2 changed files with 47 additions and 0 deletions
45
pkgs/development/python-modules/pathable/default.nix
Normal file
45
pkgs/development/python-modules/pathable/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue