blob: 232bc2223c7efb57c4ff1f6d288bdacf6f11f7c1 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
commentjson,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "resolvelib";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "sarugaku";
repo = "resolvelib";
tag = version;
hash = "sha256-8ffJ1Jlb/hzKY4pfE3B95ip2e1CxUByiR0cul/ZnxxA=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
commentjson
pytestCheckHook
];
pythonImportsCheck = [ "resolvelib" ];
meta = {
description = "Resolve abstract dependencies into concrete ones";
homepage = "https://github.com/sarugaku/resolvelib";
changelog = "https://github.com/sarugaku/resolvelib/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.isc;
maintainers = [ ];
};
}
|