blob: 0982ebe4d7d3c9adbed21769721bb562b351d097 (
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
45
46
47
48
49
50
51
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "strenum";
version = "0.4.15";
pyproject = true;
src = fetchFromGitHub {
owner = "irgeek";
repo = "StrEnum";
tag = "v${version}";
hash = "sha256-LrDLIWiV/zIbl7CwKh7DAy4LoLyY7+hfUu8nqduclnA=";
};
patches = [
# Replace SafeConfigParser and readfp, https://github.com/milanmeu/aioaseko/pull/6
(fetchpatch {
name = "replace-safeconfigparser.patch";
url = "https://github.com/irgeek/StrEnum/commit/896bef1b7e4a50c8b53d90c8d2fb5c0164f08ecd.patch";
hash = "sha256-dmmEzhy17huclo1wOubpBUDc2L7vqEU5b/6a5loM47A=";
})
];
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner"' ""
substituteInPlace pytest.ini \
--replace " --cov=strenum --cov-report term-missing --black --pylint" ""
'';
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "strenum" ];
meta = {
description = "Module for enum that inherits from str";
homepage = "https://github.com/irgeek/StrEnum";
changelog = "https://github.com/irgeek/StrEnum/releases/tag/v${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|