Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, six, pynacl }: 2 3buildPythonPackage rec { 4 pname = "pymacaroons"; 5 version = "0.13.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1e6bba42a5f66c245adf38a5a4006a99dcc06a0703786ea636098667d42903b8"; 10 }; 11 12 propagatedBuildInputs = [ 13 six 14 pynacl 15 ]; 16 17 # Tests require an old version of hypothesis 18 doCheck = false; 19 20 meta = with lib; { 21 description = "Macaroon library for Python"; 22 homepage = "https://github.com/ecordell/pymacaroons"; 23 license = licenses.mit; 24 }; 25}