lol

python312Packages.multiset: refactor

authored by

Fabian Affolter and committed by
GitHub
56864b3b 7c1649c4

+4 -4
+4 -4
pkgs/development/python-modules/multiset/default.nix
··· 10 10 buildPythonPackage rec { 11 11 pname = "multiset"; 12 12 version = "3.2.0"; 13 - format = "pyproject"; 13 + pyproject = true; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; ··· 22 22 sed -i '/python_requires/d' setup.cfg 23 23 ''; 24 24 25 - nativeBuildInputs = [ 25 + build-system = [ 26 26 setuptools 27 27 setuptools-scm 28 28 ]; 29 29 30 - pythonImportsCheck = [ "multiset" ]; 31 - 32 30 nativeCheckInputs = [ pytestCheckHook ]; 31 + 32 + pythonImportsCheck = [ "multiset" ]; 33 33 34 34 meta = with lib; { 35 35 description = "Implementation of a multiset";