1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.ptest: init at 1.5.3

This commit is contained in:
Edward Tjörnhammar 2016-02-19 10:35:03 +01:00
parent 5584ad1dc5
commit 65be213581

View file

@ -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";