Merge pull request #115333 from KAction/python-pure-cdb

python3Packages.pure-cdb: init at 3.1.1

authored by Sandro and committed by GitHub 7e67f99d 301f4aa1

+28
+26
pkgs/development/python-modules/pure-cdb/default.nix
··· 1 + { lib, fetchFromGitHub, buildPythonPackage, pythonOlder, flake8 }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pure-cdb"; 5 + version = "3.1.1"; 6 + disabled = pythonOlder "3.4"; 7 + 8 + # Archive on pypi has no tests. 9 + src = fetchFromGitHub { 10 + owner = "bbayles"; 11 + repo = "python-pure-cdb"; 12 + rev = "v${version}"; 13 + hash = "sha256-/FAe4NkY5unt83BOnJ3QqBJFQCPdQnbMVl1fSZ511Fc="; 14 + }; 15 + 16 + checkInputs = [ flake8 ]; 17 + 18 + pythonImportsCheck = [ "cdblib" ]; 19 + 20 + meta = with lib; { 21 + description = "Python library for working with constant databases"; 22 + homepage = "https://python-pure-cdb.readthedocs.io/en/latest"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ kaction ]; 25 + }; 26 + }
+2
pkgs/top-level/python-packages.nix
··· 5255 5255 5256 5256 pulsectl = callPackage ../development/python-modules/pulsectl { }; 5257 5257 5258 + pure-cdb = callPackage ../development/python-modules/pure-cdb { }; 5259 + 5258 5260 pure-eval = callPackage ../development/python-modules/pure-eval { }; 5259 5261 5260 5262 pure-pcapy3 = callPackage ../development/python-modules/pure-pcapy3 { };