blob: d6c479fc4adf5b3b47706a4e6fab150a0e38e2c3 (
plain) (
blame)
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
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, commentjson
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "resolvelib";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "sarugaku";
repo = "resolvelib";
rev = version;
hash = "sha256-oxyPn3aFPOyx/2aP7Eg2ThtPbyzrFT1JzWqy6GqNbzM=";
};
build-system = [
setuptools
];
nativeCheckInputs = [
commentjson
pytestCheckHook
];
pythonImportsCheck = [
"resolvelib"
];
meta = with lib; {
description = "Resolve abstract dependencies into concrete ones";
homepage = "https://github.com/sarugaku/resolvelib";
changelog = "https://github.com/sarugaku/resolvelib/blob/${src.rev}/CHANGELOG.rst";
license = licenses.isc;
maintainers = with maintainers; [ ];
};
}
|