Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pure-cdb / default.nix
blobf8df017c9b18c241eb79d86fcd6da2b04edd2e1f
1 { lib, fetchFromGitHub, buildPythonPackage, pythonOlder, flake8 }:
3 buildPythonPackage rec {
4   pname = "pure-cdb";
5   version = "4.0.0";
6   format = "setuptools";
7   disabled = pythonOlder "3.4";
9   # Archive on pypi has no tests.
10   src = fetchFromGitHub {
11     owner = "bbayles";
12     repo = "python-pure-cdb";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-7zxQO+oTZJhXfM2yijGXchLixiQRuFTOSESVlEc+T0s=";
15   };
17   nativeCheckInputs = [ flake8 ];
19   pythonImportsCheck = [ "cdblib" ];
21   meta = with lib; {
22     description = "Python library for working with constant databases";
23     homepage = "https://python-pure-cdb.readthedocs.io/en/latest";
24     license = licenses.mit;
25     maintainers = with maintainers; [ kaction ];
26   };