Merge pull request #25296 from mguentner/add_td_watson
watson: init at 1.4.0
This commit is contained in:
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.";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user