-
-
Notifications
You must be signed in to change notification settings - Fork 15.2k
/
Copy pathdefault.nix
50 lines (42 loc) · 928 Bytes
/
default.nix
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
{
lib,
buildPythonPackage,
dulwich,
fetchFromGitHub,
mock,
pytestCheckHook,
pythonOlder,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "simplekv";
version = "0.14.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mbr";
repo = "simplekv";
tag = version;
hash = "sha256-seUGDj2q84+AjDFM1pxMLlHbe9uBgEhmqA96UHjnCmo=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
dulwich
mock
pytestCheckHook
six
];
pythonImportsCheck = [ "simplekv" ];
disabledTests = [
# Issue with fixture
"test_concurrent_mkdir"
];
meta = with lib; {
description = "Simple key-value store for binary data";
homepage = "https://github.com/mbr/simplekv";
changelog = "https://github.com/mbr/simplekv/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}