Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 27 lines 590 B view raw
1{ lib, 2 fetchPypi, 3 requests, 4 buildPythonPackage 5}: 6 7buildPythonPackage rec { 8 pname = "braintree"; 9 version = "4.7.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "25a95f95acb7f180b37f8dcf4df7efa84ae0ba6ad9dc4ba0e724e2cc534c3483"; 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 = with maintainers; [ ]; 26 }; 27}