mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
pythonPackages.ptest: init at 1.5.3
This commit is contained in:
parent
5584ad1dc5
commit
65be213581
@ -16821,6 +16821,23 @@ in modules // {
|
||||
propagatedBuildInputs = with self; [pkgs.openldap pkgs.cyrus_sasl pkgs.openssl];
|
||||
};
|
||||
|
||||
ptest = buildPythonPackage rec {
|
||||
name = pname + "-" + version;
|
||||
pname = "ptest";
|
||||
version = "1.5.3";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "KarlGong";
|
||||
repo = pname;
|
||||
rev = version + "-release";
|
||||
sha256 = "1r50lm6n59jzdwpp53n0c0hp3aj1jxn304bk5gh830226gsaf2hn";
|
||||
};
|
||||
meta = {
|
||||
description = "Test classes and test cases using decorators, execute test cases by command line, and get clear reports.";
|
||||
homepage = https://pypi.python.org/pypi/ptest;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
};
|
||||
|
||||
ptyprocess = buildPythonPackage rec {
|
||||
name = "ptyprocess-${version}";
|
||||
version = "0.5";
|
||||
|
Loading…
Reference in New Issue
Block a user