fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
32 lines
580 B
Nix
32 lines
580 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
six,
|
|
pynacl,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymacaroons";
|
|
version = "0.13.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1e6bba42a5f66c245adf38a5a4006a99dcc06a0703786ea636098667d42903b8";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
pynacl
|
|
];
|
|
|
|
# Tests require an old version of hypothesis
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Macaroon library for Python";
|
|
homepage = "https://github.com/ecordell/pymacaroons";
|
|
license = licenses.mit;
|
|
};
|
|
}
|