pythonPackages: pytest-datafiles init at 1.0
This commit is contained in:
parent
8b6ea100ce
commit
7aafda3024
19
pkgs/development/python-modules/pytest-datafiles/default.nix
Normal file
19
pkgs/development/python-modules/pytest-datafiles/default.nix
Normal 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.";
|
||||||
|
};
|
||||||
|
}
|
@ -5190,6 +5190,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pytest-datafiles = callPackage ../development/python-modules/pytest-datafiles { };
|
||||||
|
|
||||||
pytest-django = callPackage ../development/python-modules/pytest-django { };
|
pytest-django = callPackage ../development/python-modules/pytest-django { };
|
||||||
|
|
||||||
pytest-fixture-config = buildPythonPackage rec {
|
pytest-fixture-config = buildPythonPackage rec {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user