My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pytest-services/default.nix

46 lines
823 B

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, requests
, psutil
, pytest
, setuptools-scm
, 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
];
# 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 ];
};
}