Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #34777 from dotlambda/pytest-httpbin

pythonPackages.pytest-httpbin: actually run tests

authored by Frederik Rietdijk and committed by GitHub 84a6d8a7 75c5b8c0

+4
+4
pkgs/development/python-modules/pytest-httpbin/default.nix
··· 24 25 propagatedBuildInputs = [ flask decorator httpbin six requests ]; 26 27 meta = { 28 description = "Easily test your HTTP library against a local copy of httpbin.org"; 29 homepage = https://github.com/kevin1024/pytest-httpbin;
··· 24 25 propagatedBuildInputs = [ flask decorator httpbin six requests ]; 26 27 + checkPhase = '' 28 + py.test 29 + ''; 30 + 31 meta = { 32 description = "Easily test your HTTP library against a local copy of httpbin.org"; 33 homepage = https://github.com/kevin1024/pytest-httpbin;