mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
pythonPackages.requests-hawk: init at 1.0.1
This commit is contained in:
parent
2bdce0e50c
commit
3b1ee7b011
20
pkgs/development/python-modules/requests-hawk/default.nix
Normal file
20
pkgs/development/python-modules/requests-hawk/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, python, mohawk, requests }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "requests-hawk";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1qcga289yr6qlkmc6fjk0ia6l5cg0galklpdzpslf1y8ky9zb7rl";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ mohawk requests ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Hawk authentication strategy for the requests python library.";
|
||||
homepage = "https://github.com/sam-washington/requests-hawk";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ austinbutler ];
|
||||
};
|
||||
}
|
@ -6077,6 +6077,8 @@ in {
|
||||
|
||||
requests-cache = callPackage ../development/python-modules/requests-cache { };
|
||||
|
||||
requests-hawk = callPackage ../development/python-modules/requests-hawk { };
|
||||
|
||||
requests = callPackage ../development/python-modules/requests { };
|
||||
|
||||
requests_download = callPackage ../development/python-modules/requests_download { };
|
||||
|
Loading…
Reference in New Issue
Block a user