python3Packages.mizani: init at 0.7.3

* python3Packages.mizani: init at 0.7.3

* python3Packages.mizani: patch out pytest-cov and run nixpkgs-fmt

* python3Packages.mizani: use postPatch instead of patchPhase

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

* python3Packages.mizani: include `pythonImportsCheck`

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Samuel Ainsworth 2021-12-12 17:07:56 -08:00 committed by GitHub
parent 087242632b
commit 7aa8593369
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
, matplotlib
, palettable
, pandas
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "mizani";
version = "0.7.3";
src = fetchFromGitHub {
owner = "has2k1";
repo = pname;
rev = "v${version}";
sha256 = "04r53dp5jbklv8l9ncgc5wiq0gx25y73h65gmmbbfkxwgsl3w78l";
};
postPatch = ''
substituteInPlace pytest.ini --replace " --cov=mizani --cov-report=xml" ""
'';
propagatedBuildInputs = [ matplotlib palettable pandas ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mizani" ];
meta = with lib; {
description = "Scales for Python";
homepage = "https://github.com/has2k1/mizani";
license = licenses.bsd3;
maintainers = with maintainers; [ samuela ];
};
}

View File

@ -4892,6 +4892,8 @@ in {
mixpanel = callPackage ../development/python-modules/mixpanel { };
mizani = callPackage ../development/python-modules/mizani { };
mkl-service = callPackage ../development/python-modules/mkl-service { };
ml-collections = callPackage ../development/python-modules/ml-collections { };