Files
nixpkgs/pkgs/development/python-modules/leather/default.nix
T
Martin Weinelt b22f2903dd python3Packages.leather: 0.4.0 -> 0.4.1
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:26 +01:00

37 lines
610 B
Nix

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