ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / mizani / default.nix
blob8cd4eb98330b76a55f88edbaa31516aedc02b003
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , matplotlib
5 , palettable
6 , pandas
7 , pytestCheckHook
8 , pythonOlder
9 , scipy
12 buildPythonPackage rec {
13   pname = "mizani";
14   version = "0.7.4";
15   format = "setuptools";
17   disabled = pythonOlder "3.8";
19   src = fetchFromGitHub {
20     owner = "has2k1";
21     repo = pname;
22     rev = "v${version}";
23     hash = "sha256-oqbo/aQ5L1nQO8BvXH6/8PBPiWcv2m/LUjwow8+J90w=";
24   };
26   propagatedBuildInputs = [
27     matplotlib
28     palettable
29     pandas
30     scipy
31   ];
33   checkInputs = [
34     pytestCheckHook
35   ];
37   postPatch = ''
38     substituteInPlace pytest.ini \
39       --replace " --cov=mizani --cov-report=xml" ""
40   '';
42   pythonImportsCheck = [
43     "mizani"
44   ];
46   meta = with lib; {
47     description = "Scales for Python";
48     homepage = "https://github.com/has2k1/mizani";
49     license = licenses.bsd3;
50     maintainers = with maintainers; [ samuela ];
51   };