Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 20 lines 584 B view raw
1{ lib, buildPythonPackage, fetchPypi, python, mohawk, requests }: 2 3buildPythonPackage rec { 4 pname = "requests-hawk"; 5 version = "1.1.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1a5e61cab14627f1b5ba7de0e3fb2b681007ff7b2a49110d504e5cd6d7fd62d6"; 10 }; 11 12 propagatedBuildInputs = [ mohawk requests ]; 13 14 meta = with lib; { 15 description = "Hawk authentication strategy for the requests python library."; 16 homepage = "https://github.com/sam-washington/requests-hawk"; 17 license = licenses.asl20; 18 maintainers = with maintainers; [ austinbutler ]; 19 }; 20}