Files
nixpkgs/pkgs/development/python-modules/handy-archives/default.nix
T
Florian Finkernagel d98f6da9f8 pythonPackages.whey, pythonPackages.whey-pth: init at 0.1.1
Whey and whey-pth is being used as a python build-backend by a number of packages
on Pypi.
2024-08-29 13:08:27 +02:00

33 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 ];
};
}