mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
30 lines
788 B
Nix
30 lines
788 B
Nix
{ lib, fetchPypi, python, buildPythonPackage, nose, future, coverage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyZufall";
|
|
version = "0.13.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1jffhi20m82fdf78bjhncbdxkfzcskrlipxlrqq9741xdvrn14b5";
|
|
};
|
|
|
|
# disable tests due to problem with nose
|
|
# https://github.com/nose-devs/nose/issues/1037
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [ nose coverage ];
|
|
propagatedBuildInputs = [ future ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} setup.py nosetests
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pyzufall.readthedocs.io/de/latest/";
|
|
description = "Library for generating random data and sentences in german language";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ davidak ];
|
|
};
|
|
}
|