1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPy27
5, pytest
6, pytest-cov
7}:
8
9buildPythonPackage rec {
10 pname = "venusian";
11 version = "3.0.0";
12 disabled = isPy27;
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "f6842b7242b1039c0c28f6feef29016e7e7dd3caaeb476a193acf737db31ee38";
17 };
18
19 checkInputs = [ pytest pytest-cov ];
20
21 checkPhase = ''
22 pytest
23 '';
24
25 meta = with lib; {
26 description = "A library for deferring decorator actions";
27 homepage = "https://pylonsproject.org/";
28 license = licenses.bsd0;
29 maintainers = with maintainers; [ domenkozar ];
30 };
31}