blob: 84e7c3fcd4f25f2cb7e5eb70cab346191ddb1454 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
mock,
pytestCheckHook,
six,
}:
buildPythonPackage rec {
pname = "configobj";
version = "5.0.9";
format = "setuptools";
src = fetchFromGitHub {
owner = "DiffSK";
repo = "configobj";
tag = "v${version}";
hash = "sha256-duPCGBaHCXp4A6ZHLnyL1SZtR7K4FJ4hs5wCE1V9WB4=";
};
propagatedBuildInputs = [ six ];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ mock ];
pythonImportsCheck = [ "configobj" ];
meta = {
description = "Config file reading, writing and validation";
homepage = "https://github.com/DiffSK/configobj";
changelog = "https://github.com/DiffSK/configobj/blob/v${version}/CHANGES.rst";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|