python3Packages.vulcan-api: init at 2.0.3
This commit is contained in:
parent
f76bc9cc95
commit
476e37de3f
2 changed files with 59 additions and 0 deletions
57
pkgs/development/python-modules/vulcan-api/default.nix
Normal file
57
pkgs/development/python-modules/vulcan-api/default.nix
Normal file
|
@ -0,0 +1,57 @@
|
|||
{ lib
|
||||
, aenum
|
||||
, aiodns
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, cchardet
|
||||
, fetchFromGitHub
|
||||
, pyopenssl
|
||||
, pythonOlder
|
||||
, pytz
|
||||
, related
|
||||
, requests
|
||||
, uonet-request-signer-hebe
|
||||
, yarl
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "vulcan-api";
|
||||
version = "2.0.3";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kapi2289";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "YLt9yufOBlWRyo+le7HcaFD/s7V5WpvhMUrHJqyC3pY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aenum
|
||||
aiodns
|
||||
aiohttp
|
||||
cchardet
|
||||
pyopenssl
|
||||
pytz
|
||||
related
|
||||
requests
|
||||
uonet-request-signer-hebe
|
||||
yarl
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"vulcan"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for UONET+ e-register API";
|
||||
homepage = "https://vulcan-api.readthedocs.io/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -9811,6 +9811,8 @@ in {
|
|||
enablePython = true;
|
||||
});
|
||||
|
||||
vulcan-api = callPackage ../development/python-modules/vulcan-api { };
|
||||
|
||||
vultr = callPackage ../development/python-modules/vultr { };
|
||||
|
||||
vulture = callPackage ../development/python-modules/vulture { };
|
||||
|
|
Loading…
Reference in a new issue