nixpkgs/pkgs/development/python-modules/dufte/default.nix

44 lines
814 B
Nix
Raw Normal View History

{ lib
2020-09-26 15:16:11 +02:00
, buildPythonPackage
, fetchFromGitHub
2020-09-26 15:16:11 +02:00
, pythonOlder
, importlib-metadata
, matplotlib
, numpy
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "dufte";
version = "0.2.27";
disabled = pythonOlder "3.6";
2020-09-26 15:16:11 +02:00
src = fetchFromGitHub {
owner = "nschloe";
repo = pname;
rev = version;
sha256 = "1i68h224hx9clxj3l0rd2yigsi6fqsr3x10vj5hf3j6s69iah7r3";
2020-09-26 15:16:11 +02:00
};
format = "pyproject";
propagatedBuildInputs = [
matplotlib
numpy
] ++ lib.optionals (pythonOlder "3.8") [
2020-09-26 15:16:11 +02:00
importlib-metadata
];
checkInputs = [
pytestCheckHook
];
2021-02-02 13:41:05 +01:00
2020-09-26 15:16:11 +02:00
pythonImportsCheck = [ "dufte" ];
meta = with lib; {
2020-09-26 15:16:11 +02:00
description = "Clean matplotlib plots";
homepage = "https://github.com/nschloe/dufte";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ris ];
};
}