Unverified Commit 648446fc authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.scienceplots: init at 2.1.1 (#318346)

parents 157d7e23 37ffc6ef
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  matplotlib,
}:

buildPythonPackage rec {
  pname = "SciencePlots";
  version = "2.1.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-2NGX40EPh+va0LnCZeqrWWCU+wgtlxI+g19rwygAq1Q=";
  };

  build-system = [ setuptools ];

  dependencies = [ matplotlib ];

  pythonImportsCheck = [ "scienceplots" ];

  doCheck = false; # no tests

  meta = with lib; {
    description = "Matplotlib styles for scientific plotting";
    homepage = "https://github.com/garrettj403/SciencePlots";
    license = licenses.mit;
    maintainers = with maintainers; [ kilimnik ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -14103,6 +14103,8 @@ self: super: with self; {
  schwifty = callPackage ../development/python-modules/schwifty { };
  scienceplots = callPackage ../development/python-modules/scienceplots { };
  scim2-filter-parser = callPackage ../development/python-modules/scim2-filter-parser { };
  scikit-bio = callPackage ../development/python-modules/scikit-bio { };