Loading pkgs/development/python-modules/scienceplots/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/scienceplots/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading