blob: 48fcab3a2053d8859b6c5c4652e360e01652caac (
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,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "durus";
version = "4.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-aQM0I26juo2WbjrszgJUd5CdayQNCzID0zJ/YkNyYAc=";
};
build-system = [ setuptools ];
# Checks disabled due to missing python unittest framework 'sancho' in nixpkgs
doCheck = false;
pythonImportsCheck = [
"durus.connection"
"durus.file_storage"
"durus.client_storage"
"durus.sqlite_storage"
];
meta = {
description = "Object persistence layer";
mainProgram = "durus";
homepage = "https://github.com/nascheme/durus";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ grindhold ];
};
}
|