nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, pytestCheckHook
5, pythonOlder
6, poetry-core
7}:
8
9buildPythonPackage rec {
10 pname = "pathable";
11 version = "0.4.0";
12 format = "pyproject";
13
14 disabled = pythonOlder "3.7";
15
16 src = fetchFromGitHub {
17 owner = "p1c2u";
18 repo = pname;
19 rev = version;
20 hash = "sha256-3qekweG+o7f6nm1cnCEHrWYn/fQ42GZrZkPwGbZcU38=";
21 };
22
23 nativeBuildInputs = [
24 poetry-core
25 ];
26
27 checkInputs = [
28 pytestCheckHook
29 ];
30
31 postPatch = ''
32 sed -i "/--cov/d" pyproject.toml
33 '';
34
35 pythonImportsCheck = [
36 "pathable"
37 ];
38
39 meta = with lib; {
40 description = "Library for object-oriented paths";
41 homepage = "https://github.com/p1c2u/pathable";
42 license = licenses.asl20;
43 maintainers = with maintainers; [ fab ];
44 };
45}