nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 39 lines 565 B view raw
1{ 2 buildPythonPackage, 3 certbot, 4 cryptography, 5 pyopenssl, 6 pyrfc3339, 7 josepy, 8 requests, 9 setuptools, 10}: 11 12buildPythonPackage rec { 13 pname = "acme"; 14 inherit (certbot) version src; 15 pyproject = true; 16 17 sourceRoot = "${src.name}/acme"; 18 19 build-system = [ 20 setuptools 21 ]; 22 23 dependencies = [ 24 cryptography 25 pyopenssl 26 pyrfc3339 27 requests 28 josepy 29 ]; 30 31 # does not contain any tests 32 doCheck = false; 33 34 pythonImportsCheck = [ "acme" ]; 35 36 meta = certbot.meta // { 37 description = "ACME protocol implementation in Python"; 38 }; 39}