Files
nixpkgs/pkgs/development/python-modules/pytestrunner/default.nix
T

20 lines
528 B
Nix
Raw Normal View History

2018-01-17 11:46:27 +01:00
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, pytest }:
buildPythonPackage rec {
pname = "pytest-runner";
2018-02-17 14:22:11 +01:00
version = "4.0";
2018-01-17 11:46:27 +01:00
src = fetchPypi {
inherit pname version;
2018-02-17 14:22:11 +01:00
sha256 = "183f3745561b1e00ea51cd97634ba5c540848ab4aa8016a81faba7fb7f33ec76";
2018-01-17 11:46:27 +01:00
};
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;
};
}