python310Packages.justnimbus: init at 0.6.0
This commit is contained in:
parent
d6417bd306
commit
f8d207135a
45
pkgs/development/python-modules/justnimbus/default.nix
Normal file
45
pkgs/development/python-modules/justnimbus/default.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
, pythonOlder
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "justnimbus";
|
||||
version = "0.6.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kvanzuijlen";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-uQ5Nc5sxqHeAuavyfX4Q6Umsd54aileJjFwOOU6X7Yg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"justnimbus"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for the JustNimbus API";
|
||||
homepage = "https://github.com/kvanzuijlen/justnimbus";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
@ -4735,6 +4735,8 @@ in {
|
||||
|
||||
justbytes = callPackage ../development/python-modules/justbytes { };
|
||||
|
||||
justnimbus = callPackage ../development/python-modules/justnimbus { };
|
||||
|
||||
jwcrypto = callPackage ../development/python-modules/jwcrypto { };
|
||||
|
||||
jxmlease = callPackage ../development/python-modules/jxmlease { };
|
||||
|
Loading…
Reference in New Issue
Block a user