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

Merge pull request #312725 from fabaff/looseversion-refactor

python312Packages.looseversion: refactor
parents 29f127fa 50f03706
Loading
Loading
Loading
Loading
+16 −13
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, hatchling
{
  lib,
  buildPythonPackage,
  fetchPypi,
  hatchling,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "looseversion";
  version = "1.3.0";
  format = "pyproject";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit version pname;
    sha256 = "sha256-695l8/a7lTGoEBbG/vPrlaYRga3Ee3+UnpwOpHkRZp4=";
    hash = "sha256-695l8/a7lTGoEBbG/vPrlaYRga3Ee3+UnpwOpHkRZp4=";
  };

  nativeBuildInputs = [
    hatchling
  ];
  build-system = [ hatchling ];

  nativeCheckInputs = [ pytestCheckHook ];

  nativeCheckInputs = [
    pytestCheckHook
  ];
  pytestFlagsArray = [ "tests.py" ];

  pythonImportsCheck = [ "looseversion" ];

  meta = with lib; {
    description = "Version numbering for anarchists and software realists";
    homepage = "https://github.com/effigies/looseversion";
    changelog = "https://github.com/effigies/looseversion/blob/${version}/CHANGES.md";
    license = licenses.psfl;
    maintainers = with maintainers; [ pelme ];
  };