Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pymacaroons / default.nix
blob2950e71020dbbfcbdd788f184533c7ebd28fe0fb
1 { lib, buildPythonPackage, fetchPypi, six, pynacl }:
3 buildPythonPackage rec {
4   pname = "pymacaroons";
5   version = "0.13.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1e6bba42a5f66c245adf38a5a4006a99dcc06a0703786ea636098667d42903b8";
11   };
13   propagatedBuildInputs = [
14     six
15     pynacl
16   ];
18   # Tests require an old version of hypothesis
19   doCheck = false;
21   meta = with lib; {
22     description = "Macaroon library for Python";
23     homepage = "https://github.com/ecordell/pymacaroons";
24     license = licenses.mit;
25   };