ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / scikit-misc / default.nix
blobbfe0ab7d5b349dee29dd409dddce5240e3a0966d
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , cython
5 , gfortran
6 , pytestCheckHook
7 , numpy }:
9 buildPythonPackage rec {
10   pname = "scikit-misc";
11   version = "0.1.4";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-93RqA0eBEGPh7PkSHflINXhQA5U8OLW6hPY/xQjCKRE=";
16   };
18   postPatch = ''
19     substituteInPlace pytest.ini \
20       --replace "--cov --cov-report=xml" ""
21   '';
23   nativeBuildInputs = [
24     gfortran
25   ];
27   buildInputs = [
28     cython
29     numpy
30   ];
32   # Tests fail because of infinite recursion error
33   doCheck = false;
35   pythonImportsCheck = [
36     "skmisc"
37   ];
39   meta = with lib; {
40     description = "Miscellaneous tools for scientific computing";
41     homepage = "https://github.com/has2k1/scikit-misc";
42     license = licenses.bsd3;
43     maintainers = with maintainers; [ onny ];
44   };