Commit bc459417 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python3Packages.hatch-min-requirements: cleanup, fix

parent 6fe1428c
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  hatch-vcs,
  hatchling,
  lib,

  # dependencies
  tomlkit,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "hatch-min-requirements";
  version = "0.2.0";
  pyproject = true;
@@ -14,7 +19,7 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "tlambert03";
    repo = "hatch-min-requirements";
    tag = "v${version}";
    tag = "v${finalAttrs.version}";
    hash = "sha256-QKO5fVvjSqwY+48Fc8sAiZazrxZ4eBYxzVElHr2lcEA=";
  };

@@ -23,6 +28,10 @@ buildPythonPackage rec {
    hatch-vcs
  ];

  dependencies = [
    tomlkit
  ];

  # As of v0.1.0 all tests attempt to use the network
  doCheck = false;

@@ -31,9 +40,10 @@ buildPythonPackage rec {
  meta = {
    description = "Hatchling plugin to create optional-dependencies pinned to minimum versions";
    homepage = "https://github.com/tlambert03/hatch-min-requirements";
    changelog = "https://github.com/tlambert03/hatch-min-requirements/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [
      samuela
    ];
  };
}
})