Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 25 lines 701 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2, setuptools-git, pytest_3 }: 3 4buildPythonPackage rec { 5 pname = "pytest-fixture-config"; 6 version = "1.4.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "839d70343c87d6dda5bca88e3ab06e7b2027998dc1ec452c14d50be5725180a3"; 11 }; 12 13 nativeBuildInputs = [ setuptools-git ]; 14 15 buildInputs = [ pytest_3 ]; 16 17 doCheck = false; 18 19 meta = with stdenv.lib; { 20 description = "Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables arent set."; 21 homepage = https://github.com/manahl/pytest-plugins; 22 license = licenses.mit; 23 maintainers = with maintainers; [ ryansydnor ]; 24 }; 25}