mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
Merge pull request #115333 from KAction/python-pure-cdb
python3Packages.pure-cdb: init at 3.1.1
This commit is contained in:
commit
7e67f99d53
26
pkgs/development/python-modules/pure-cdb/default.nix
Normal file
26
pkgs/development/python-modules/pure-cdb/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, fetchFromGitHub, buildPythonPackage, pythonOlder, flake8 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pure-cdb";
|
||||
version = "3.1.1";
|
||||
disabled = pythonOlder "3.4";
|
||||
|
||||
# Archive on pypi has no tests.
|
||||
src = fetchFromGitHub {
|
||||
owner = "bbayles";
|
||||
repo = "python-pure-cdb";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-/FAe4NkY5unt83BOnJ3QqBJFQCPdQnbMVl1fSZ511Fc=";
|
||||
};
|
||||
|
||||
checkInputs = [ flake8 ];
|
||||
|
||||
pythonImportsCheck = [ "cdblib" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for working with constant databases";
|
||||
homepage = "https://python-pure-cdb.readthedocs.io/en/latest";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kaction ];
|
||||
};
|
||||
}
|
@ -5255,6 +5255,8 @@ in {
|
||||
|
||||
pulsectl = callPackage ../development/python-modules/pulsectl { };
|
||||
|
||||
pure-cdb = callPackage ../development/python-modules/pure-cdb { };
|
||||
|
||||
pure-eval = callPackage ../development/python-modules/pure-eval { };
|
||||
|
||||
pure-pcapy3 = callPackage ../development/python-modules/pure-pcapy3 { };
|
||||
|
Loading…
Reference in New Issue
Block a user