Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / venusian / default.nix
blobb992f518c5fbee4c267ee35085a0f994eb920d64
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , isPy27
5 , pytestCheckHook
6 , pytest-cov
7 , setuptools
8 }:
10 buildPythonPackage rec {
11   pname = "venusian";
12   version = "3.1.0";
13   pyproject = true;
15   disabled = isPy27;
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-63LNym8xOaFdyA+cldPBD4pUoLqIHu744uxbQtPuOpU=";
20   };
22   nativeBuildInputs = [
23     setuptools
24   ];
26   nativeCheckInputs = [
27     pytestCheckHook
28     pytest-cov
29   ];
31   checkPhase = ''
32     pytest
33   '';
35   meta = with lib; {
36     description = "A library for deferring decorator actions";
37     homepage = "https://pylonsproject.org/";
38     license = licenses.bsd0;
39     maintainers = with maintainers; [ domenkozar ];
40   };