depot/third_party/nixpkgs/pkgs/development/python-modules/venusian/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

31 lines
599 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, pytestcov
}:
buildPythonPackage rec {
pname = "venusian";
version = "3.0.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "f6842b7242b1039c0c28f6feef29016e7e7dd3caaeb476a193acf737db31ee38";
};
checkInputs = [ pytest pytestcov ];
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
description = "A library for deferring decorator actions";
homepage = "https://pylonsproject.org/";
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}