nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python.pkgs.PasteDeploy: no tests in tarball

authored by

Robert Schütz and committed by
Frederik Rietdijk
9a360410 869d64e2

+9 -2
+9 -2
pkgs/development/python-modules/pastedeploy/default.nix
··· 1 1 { stdenv 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , nose 4 + , pytestrunner 5 + , pytest 5 6 }: 6 7 7 8 buildPythonPackage rec { ··· 14 13 sha256 = "d423fb9d51fdcf853aa4ff43ac7ec469b643ea19590f67488122d6d0d772350a"; 15 14 }; 16 15 17 - buildInputs = [ nose ]; 16 + buildInputs = [ pytestrunner ]; 17 + 18 + checkInputs = [ pytest ]; 19 + 20 + # no tests in PyPI tarball 21 + # should be included with versions > 2.0.1 22 + doCheck = false; 18 23 19 24 meta = with stdenv.lib; { 20 25 description = "Load, configure, and compose WSGI applications and servers";