Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi 2, setuptools-git, pytest }: 3 4buildPythonPackage rec { 5 pname = "pytest-fixture-config"; 6 version = "1.7.0"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1"; 11 }; 12 13 nativeBuildInputs = [ setuptools-git ]; 14 15 buildInputs = [ pytest ]; 16 17 doCheck = false; 18 19 meta = with 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}