blob: b43530e017248d45d44b08d552d1c0e152f2c1f3 (
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
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
flake8,
}:
buildPythonPackage rec {
pname = "pure-cdb";
version = "4.0.0";
format = "setuptools";
# Archive on pypi has no tests.
src = fetchFromGitHub {
owner = "bbayles";
repo = "python-pure-cdb";
tag = "v${version}";
hash = "sha256-7zxQO+oTZJhXfM2yijGXchLixiQRuFTOSESVlEc+T0s=";
};
nativeCheckInputs = [ flake8 ];
pythonImportsCheck = [ "cdblib" ];
meta = {
description = "Python library for working with constant databases";
homepage = "https://python-pure-cdb.readthedocs.io/en/latest";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kaction ];
};
}
|