1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 pname = "ptest";
8 version = "1.7.4";
9
10 src = fetchFromGitHub {
11 owner = "KarlGong";
12 repo = pname;
13 rev = version + "-release";
14 sha256 = "0v1zpfjagjlvdmgv6d502nmb7s996wadvpzg93i651s64rrlwq4s";
15 };
16
17 meta = with lib; {
18 description = "Test classes and test cases using decorators, execute test cases by command line, and get clear reports";
19 homepage = "https://pypi.python.org/pypi/ptest";
20 license = licenses.asl20;
21 };
22
23}