Files
nixpkgs/pkgs/development/python-modules/hatch-tryton/default.nix
2026-08-27 01:14:26 +02:00

35 lines
702 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
nix-update-script,
}:
buildPythonPackage (finalAttrs: {
pname = "hatch-tryton";
version = "0.1.1";
pyproject = true;
src = fetchPypi {
pname = "hatch_tryton";
inherit (finalAttrs) version;
hash = "sha256-0NccQKXyC811K+90Pn1xPBUASQ/zzAripwnv9jnpA0U=";
};
build-system = [ hatchling ];
buildInputs = [ hatchling ];
pythonImportsCheck = [ "hatch_tryton" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Hatchling plugin for Tryton";
homepage = "https://pypi.org/project/hatch-tryton";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})