Unverified Commit e9f35bdc authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python311Packages.packageurl-python: refactor

parent e98e6acb
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -3,12 +3,13 @@
, fetchPypi
, pytestCheckHook
, pythonOlder
, setuptools
}:

buildPythonPackage rec {
  pname = "packageurl-python";
  version = "0.15.0";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -17,6 +18,10 @@ buildPythonPackage rec {
    hash = "sha256-8hmyzmNIGFonvWpy5v3J+YTmyfoVfv+ny5PjQcSc3MI=";
  };

  build-system = [
    setuptools
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];