nixpkgs/pkgs/development/python-modules/pytest-fixture-config/default.nix
Andreas Rammhold d814c98ec8 python.pkgs.pytest-fixture-config: disable tests (#46021)
Tests seem to fail on all recent versions even outside of our build
system. The upstream CI tests seem to somehow succeed but I wasn't able
to reproduce that locally. For not it is probably best to disable them.
2018-09-05 01:02:06 +02:00

26 lines
697 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ stdenv, buildPythonPackage, fetchPypi
, setuptools-git, pytest }:
buildPythonPackage rec {
pname = "pytest-fixture-config";
version = "1.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "1717cd7d2233943cae9af419c6e31dca5e40d5de01ef0bcfd5cd06f37548db08";
};
nativeBuildInputs = [ setuptools-git ];
buildInputs = [ pytest ];
doCheck = false;
meta = with stdenv.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 ];
};
}