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

authored by Fabian Affolter and committed by GitHub 96cb3b99 a7f087c8

+9 -9
+9 -9
pkgs/development/python-modules/pyrituals/default.nix
··· 3 3 aiohttp, 4 4 buildPythonPackage, 5 5 fetchFromGitHub, 6 - pythonOlder, 7 6 setuptools, 8 7 }: 9 8 10 9 buildPythonPackage rec { 11 10 pname = "pyrituals"; 12 - version = "0.0.6"; 13 - format = "pyproject"; 14 - disabled = pythonOlder "3.8"; 11 + version = "0.0.7"; 12 + pyproject = true; 15 13 16 14 src = fetchFromGitHub { 17 15 owner = "milanmeu"; 18 16 repo = "pyrituals"; 19 - rev = version; 20 - sha256 = "0ynjz7khp67bwxjp580w3zijxr9yn44nmnbvkxjxq9scyb2mjf6g"; 17 + tag = version; 18 + hash = "sha256-nCyfwOONtpwRLFq3crRacmrWef6J3mOfKz4fvkOcb3g="; 21 19 }; 22 20 23 - nativeBuildInputs = [ setuptools ]; 21 + build-system = [ setuptools ]; 24 22 25 - propagatedBuildInputs = [ aiohttp ]; 23 + dependencies = [ aiohttp ]; 26 24 27 25 # Project has no tests 28 26 doCheck = false; 27 + 29 28 pythonImportsCheck = [ "pyrituals" ]; 30 29 31 30 meta = with lib; { 32 31 description = "Python wrapper for the Rituals Perfume Genie API"; 33 32 homepage = "https://github.com/milanmeu/pyrituals"; 34 - license = with licenses; [ mit ]; 33 + changelog = "https://github.com/milanmeu/pyrituals/releases/tag/${src.tag}"; 34 + license = licenses.mit; 35 35 maintainers = with maintainers; [ fab ]; 36 36 }; 37 37 }