python3Packages.mwdblib: init at 3.4.0
This commit is contained in:
parent
0681bd9e9a
commit
d9f87b224f
2 changed files with 51 additions and 0 deletions
49
pkgs/development/python-modules/mwdblib/default.nix
Normal file
49
pkgs/development/python-modules/mwdblib/default.nix
Normal file
|
@ -0,0 +1,49 @@
|
|||
{ lib
|
||||
, beautifultable
|
||||
, buildPythonPackage
|
||||
, click
|
||||
, click-default-group
|
||||
, fetchFromGitHub
|
||||
, humanize
|
||||
, keyring
|
||||
, python
|
||||
, python-dateutil
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mwdblib";
|
||||
version = "3.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CERT-Polska";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0dbdmps4a3mav02m4h37bj2bw8pg6h52yf3gpdkhi3k9hl9f942h";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
beautifultable
|
||||
click
|
||||
click-default-group
|
||||
humanize
|
||||
keyring
|
||||
python-dateutil
|
||||
requests
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
${python.interpreter} -m unittest discover
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "mwdblib" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python client library for the mwdb service";
|
||||
homepage = "https://github.com/CERT-Polska/mwdblib";
|
||||
license = with licenses; [ bsd3 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -4518,6 +4518,8 @@ in {
|
|||
|
||||
mwclient = callPackage ../development/python-modules/mwclient { };
|
||||
|
||||
mwdblib = callPackage ../development/python-modules/mwdblib { };
|
||||
|
||||
mwlib = callPackage ../development/python-modules/mwlib { };
|
||||
|
||||
mwlib-ext = callPackage ../development/python-modules/mwlib-ext { };
|
||||
|
|
Loading…
Reference in a new issue