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/process-tests/default.nix

24 lines
457 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "process-tests";
version = "2.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "a3747ad947bdfc93e5c986bdb17a6d718f3f26e8577a0807a00962f29e26deba";
};
# No tests
doCheck = false;
meta = with lib; {
description = "Tools for testing processes";
license = licenses.bsd2;
homepage = "https://github.com/ionelmc/python-process-tests";
};
}