about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytestrunner/default.nix
blob: 4f15adcd90e5b71bfee3bb16bd8bfb9f6be714e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, pytest }:

buildPythonPackage rec {
  pname = "pytest-runner";
  version = "4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "183f3745561b1e00ea51cd97634ba5c540848ab4aa8016a81faba7fb7f33ec76";
  };

  buildInputs = [ setuptools_scm pytest ];

  meta = with stdenv.lib; {
    description = "Invoke py.test as distutils command with dependency resolution";
    homepage = https://bitbucket.org/pytest-dev/pytest-runner;
    license = licenses.mit;
  };
}