forked from mirrors/nixpkgs
python3Packages.pyrituals: init at 0.0.2
This commit is contained in:
parent
d485a4db25
commit
044aaef9c9
33
pkgs/development/python-modules/pyrituals/default.nix
Normal file
33
pkgs/development/python-modules/pyrituals/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyrituals";
|
||||
version = "0.0.2";
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "milanmeu";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0hrwhk3kpvdg78fgnvhmnnh3wprdv10j8jqjm4ly64chr8cdi6f2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ aiohttp ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "pyrituals" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python wrapper for the Rituals Perfume Genie API";
|
||||
homepage = "https://github.com/milanmeu/pyrituals";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -5958,6 +5958,8 @@ in {
|
|||
|
||||
pyrisco = callPackage ../development/python-modules/pyrisco { };
|
||||
|
||||
pyrituals = callPackage ../development/python-modules/pyrituals { };
|
||||
|
||||
pyRFC3339 = callPackage ../development/python-modules/pyrfc3339 { };
|
||||
|
||||
PyRMVtransport = callPackage ../development/python-modules/PyRMVtransport { };
|
||||
|
|
Loading…
Reference in a new issue