portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / development / python-modules / pure-cdb / default.nix
blob175841ed253431898e56c46f6631b7419044a502
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5   flake8,
6 }:
8 buildPythonPackage rec {
9   pname = "pure-cdb";
10   version = "4.0.0";
11   format = "setuptools";
13   # Archive on pypi has no tests.
14   src = fetchFromGitHub {
15     owner = "bbayles";
16     repo = "python-pure-cdb";
17     rev = "refs/tags/v${version}";
18     hash = "sha256-7zxQO+oTZJhXfM2yijGXchLixiQRuFTOSESVlEc+T0s=";
19   };
21   nativeCheckInputs = [ flake8 ];
23   pythonImportsCheck = [ "cdblib" ];
25   meta = with lib; {
26     description = "Python library for working with constant databases";
27     homepage = "https://python-pure-cdb.readthedocs.io/en/latest";
28     license = licenses.mit;
29     maintainers = with maintainers; [ kaction ];
30   };