mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 18:24:53 +00:00
37 lines
629 B
Nix
37 lines
629 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pygments,
|
|
whey,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "enum-tools";
|
|
version = "0.13.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "enum_tools";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-DRMzXjYdMA3A+P2CyM+ZUUFyRvlnYUT17hdh62kCKOs=";
|
|
};
|
|
|
|
build-system = [
|
|
whey
|
|
];
|
|
|
|
dependencies = [
|
|
pygments
|
|
];
|
|
|
|
pythonImportsCheck = [ "enum_tools" ];
|
|
|
|
meta = {
|
|
description = "Tools to expand Python's enum module";
|
|
homepage = "https://github.com/domdfcoding/enum_tools";
|
|
license = lib.licenses.lgpl3;
|
|
maintainers = [ ];
|
|
};
|
|
})
|