depot/third_party/nixpkgs/pkgs/development/python-modules/handy-archives/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

32 lines
624 B
Nix

{
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 =
[
];
nativeCheckInputs = [ ];
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 ];
};
}