python3Packages.pyrituals: 0.0.6 -> 0.0.7 (#440328)

This commit is contained in:
Fabian Affolter
2025-09-06 14:39:56 +02:00
committed by GitHub
@@ -3,35 +3,35 @@
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pyrituals";
version = "0.0.6";
format = "pyproject";
disabled = pythonOlder "3.8";
version = "0.0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "milanmeu";
repo = "pyrituals";
rev = version;
sha256 = "0ynjz7khp67bwxjp580w3zijxr9yn44nmnbvkxjxq9scyb2mjf6g";
tag = version;
hash = "sha256-nCyfwOONtpwRLFq3crRacmrWef6J3mOfKz4fvkOcb3g=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [ aiohttp ];
dependencies = [ 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 ];
changelog = "https://github.com/milanmeu/pyrituals/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}