nixpkgs/pkgs/development/python-modules/leather/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

37 lines
612 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
six,
cssselect,
lxml,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "leather";
version = "0.4.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-+WS+wghvMVOmwW5wfyDLcY+BH1evEWB19MD0gFxgi5U=";
};
propagatedBuildInputs = [ six ];
nativeCheckInputs = [
cssselect
lxml
pytestCheckHook
];
meta = with lib; {
homepage = "http://leather.rtfd.io";
description = "Python charting library";
license = licenses.mit;
platforms = platforms.all;
maintainers = [ ];
};
}