Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pytest-datafiles / default.nix
blobbdcab2788ae4734c64e9de72b4be8e510fdaa9ee
1 { lib, buildPythonPackage, fetchPypi, py, pytest }:
3 buildPythonPackage rec {
4   pname = "pytest-datafiles";
5   version = "2.0";
6   src = fetchPypi {
7     inherit version pname;
8     sha256 = "1yfvaqbqvjfikz215kwn6qiwwn9girka93zq4jphgfyvn75jjcql";
9   };
11   buildInputs = [ py pytest ];
13   meta = with lib; {
14     license = licenses.mit;
15     homepage = "https://github.com/omarkohl/pytest-datafiles";
16     description = "py.test plugin to create a 'tmpdir' containing predefined files/directories.";
17   };