2021-01-25 00:26:54 -08:00
|
|
|
{ lib
|
2018-10-15 09:06:15 -07:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 15:41:26 -07:00
|
|
|
, isPy27
|
2018-10-15 09:06:15 -07:00
|
|
|
, pytest
|
2019-12-20 22:26:35 -08:00
|
|
|
, pytestcov
|
2018-10-15 09:06:15 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "venusian";
|
2019-12-19 11:31:25 -08:00
|
|
|
version = "3.0.0";
|
2020-08-15 15:41:26 -07:00
|
|
|
disabled = isPy27;
|
2018-10-15 09:06:15 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 11:31:25 -08:00
|
|
|
sha256 = "f6842b7242b1039c0c28f6feef29016e7e7dd3caaeb476a193acf737db31ee38";
|
2018-10-15 09:06:15 -07:00
|
|
|
};
|
|
|
|
|
2019-12-20 22:26:35 -08:00
|
|
|
checkInputs = [ pytest pytestcov ];
|
2018-10-15 09:06:15 -07:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-10-15 09:06:15 -07:00
|
|
|
description = "A library for deferring decorator actions";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://pylonsproject.org/";
|
2018-10-15 09:06:15 -07:00
|
|
|
license = licenses.bsd0;
|
2019-07-03 02:27:39 -07:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2018-10-15 09:06:15 -07:00
|
|
|
};
|
|
|
|
}
|