Files
nixpkgs/pkgs/development/python-modules/handy-archives/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
589 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
buildPythonPackage,
fetchPypi,
lib,
flit-core,
}:
buildPythonPackage rec {
pname = "handy-archives";
version = "0.2.0";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "handy_archives";
hash = "sha256-+6IRAf2eKdXjtygjJhqq4GuTUGhvDSBneG1k3Oc+s/Y=";
};
build-system = [ flit-core ];
dependencies = [
];
meta = {
description = "Some handy archive helpers for Python";
homepage = "https://github.com/domdfcoding/handy-archives";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tyberius-prime ];
};
}