lol

python312Packages.rmscene: 0.5.0 -> 0.6.0 (#360209)

authored by

Robert Schütz and committed by
GitHub
d306e5d0 758dfb6d

+5 -5
+5 -5
pkgs/development/python-modules/rmscene/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "rmscene"; 14 - version = "0.5.0"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.10"; ··· 19 src = fetchFromGitHub { 20 owner = "ricklupton"; 21 repo = "rmscene"; 22 - rev = "v${version}"; 23 - hash = "sha256-uIvoKdW7caOfc8OEGIcyDwyos9NLwtZ++CeZdUO/G8M="; 24 }; 25 26 - nativeBuildInputs = [ 27 poetry-core 28 ]; 29 30 pythonRelaxDeps = [ "packaging" ]; 31 32 - propagatedBuildInputs = [ packaging ]; 33 34 pythonImportsCheck = [ "rmscene" ]; 35
··· 11 12 buildPythonPackage rec { 13 pname = "rmscene"; 14 + version = "0.6.0"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.10"; ··· 19 src = fetchFromGitHub { 20 owner = "ricklupton"; 21 repo = "rmscene"; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-BnTr3rLehP5uhzXWXKPaXcJCWW2ofk5N8amqoEUmlWo="; 24 }; 25 26 + build-system = [ 27 poetry-core 28 ]; 29 30 pythonRelaxDeps = [ "packaging" ]; 31 32 + dependencies = [ packaging ]; 33 34 pythonImportsCheck = [ "rmscene" ]; 35