Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 584 B view raw
1{ lib, 2 fetchPypi, 3 requests, 4 buildPythonPackage 5}: 6 7buildPythonPackage rec { 8 pname = "braintree"; 9 version = "3.51.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1aavalwxcpql416f0n6wxq2h5jpvbx5jq4y4nz2wsppgjbsxylcc"; 14 }; 15 16 propagatedBuildInputs = [ requests ]; 17 18 # pypi release does not include tests 19 doCheck = false; 20 21 meta = with lib; { 22 description = "Python library for integration with Braintree"; 23 homepage = https://github.com/braintree/braintree_python; 24 license = licenses.mit; 25 maintainers = [ maintainers.ivegotasthma ]; 26 }; 27}