`buildDotnetModule`: add support for installing pre-release tools (#374663)
[NixPkgs.git] / pkgs / development / python-modules / scienceplots / default.nix
blobb6421ce40a87d2ae5313ce8c0730073a74738ffa
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   matplotlib,
7 }:
9 buildPythonPackage rec {
10   pname = "SciencePlots";
11   version = "2.1.1";
12   pyproject = true;
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-2NGX40EPh+va0LnCZeqrWWCU+wgtlxI+g19rwygAq1Q=";
17   };
19   build-system = [ setuptools ];
21   dependencies = [ matplotlib ];
23   pythonImportsCheck = [ "scienceplots" ];
25   doCheck = false; # no tests
27   meta = with lib; {
28     description = "Matplotlib styles for scientific plotting";
29     homepage = "https://github.com/garrettj403/SciencePlots";
30     license = licenses.mit;
31     maintainers = with maintainers; [ kilimnik ];
32   };