mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
python3Packages.scienceplots: init at 2.1.1 (#318346)
This commit is contained in:
commit
648446fcb0
33
pkgs/development/python-modules/scienceplots/default.nix
Normal file
33
pkgs/development/python-modules/scienceplots/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -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…
Reference in New Issue
Block a user