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