My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytest-fixture-config/default.nix

25 lines
677 B

{ lib, buildPythonPackage, fetchPypi
, setuptools-git, pytest }:
buildPythonPackage rec {
pname = "pytest-fixture-config";
version = "1.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1";
};
nativeBuildInputs = [ setuptools-git ];
buildInputs = [ pytest ];
doCheck = false;
meta = with lib; {
description = "Simple configuration objects for Py.test fixtures. Allows you to skip tests when their required config variables arent set.";
homepage = "https://github.com/manahl/pytest-plugins";
license = licenses.mit;
maintainers = with maintainers; [ ryansydnor ];
};
}