blob: 95b991b40cd39dc08d8475404394fd86bbdeb344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
six,
nix-update-script,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "wirerope";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "youknowone";
repo = "wirerope";
rev = version;
hash = "sha256-oojnv+2+nwL/TJhN+QZ5eiV6WGHC3SCxBQrCri0aHQc=";
};
build-system = [ setuptools ];
dependencies = [ six ];
pythonImportsCheck = [ "wirerope" ];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Wrappers for class callables";
homepage = "https://github.com/youknowone/wirerope";
changelog = "https://github.com/youknowone/wirerope/releases/tag/${version}";
license = lib.licenses.bsd2WithViews;
maintainers = with lib.maintainers; [ pbsds ];
};
}
|