blob: 6cac7476142f022b9cfa6ef817b97cb89a9553a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
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 = [ ];
};
}
|