about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/mohawk/default.nix
blob: 99caae9ec3f64123d03a2ce5b90cb1e0283e6b46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildPythonPackage, fetchPypi, mock, nose, pytest, six }:

buildPythonPackage rec {
  pname = "mohawk";
  version = "1.1.0";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08wppsv65yd0gdxy5zwq37yp6jmxakfz4a2yx5wwq2d222my786j";
  };

  propagatedBuildInputs = [ six ];

  nativeCheckInputs = [ mock nose pytest ];

  checkPhase = ''
    pytest mohawk/tests.py
  '';

  meta = {
    description = "Python library for Hawk HTTP authorization.";
    homepage = "https://github.com/kumar303/mohawk";
    license = lib.licenses.mpl20;
    maintainers = [ ];
  };
}