pythonPackages: pytest-datafiles init at 1.0

This commit is contained in:
Maximilian Güntner 2017-05-04 19:18:28 +02:00
parent 8b6ea100ce
commit 7aafda3024
No known key found for this signature in database
GPG Key ID: 5D667E0FD0397CFF
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi, py, pytest }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-datafiles";
version = "1.0";
src = fetchPypi {
inherit version pname;
sha256 = "1w5435b5pimk6479ml53lmld3qbag7awcg4gl3ljdywc1v096r5v";
};
buildInputs = [ py pytest ];
meta = with stdenv.lib; {
license = licenses.mit;
website = https://pypi.python.org/pypi/pytest-catchlog/;
description = "py.test plugin to create a 'tmpdir' containing predefined files/directories.";
};
}

View File

@ -5190,6 +5190,8 @@ in {
};
};
pytest-datafiles = callPackage ../development/python-modules/pytest-datafiles { };
pytest-django = callPackage ../development/python-modules/pytest-django { };
pytest-fixture-config = buildPythonPackage rec {