mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
48 lines
884 B
Nix
48 lines
884 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, requests
|
|
, psutil
|
|
, pytest
|
|
, setuptools-scm
|
|
, subprocess32 ? null
|
|
, toml
|
|
, zc_lockfile
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-services";
|
|
version = "2.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2da740487d08ea63dfdf718f5d4ba11e590c99ddf5481549edebf7a3a42ca536";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
toml
|
|
];
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
psutil
|
|
zc_lockfile
|
|
] ++ lib.optional (!isPy3k) subprocess32;
|
|
|
|
# no tests in PyPI tarball
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pytest_services" ];
|
|
|
|
meta = with lib; {
|
|
description = "Services plugin for pytest testing framework";
|
|
homepage = "https://github.com/pytest-dev/pytest-services";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|