mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
29 lines
597 B
Nix
29 lines
597 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, requests
|
|
, webob
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tokenlib";
|
|
version = "0.3.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mozilla-services";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "0bq6dqyfwh29pg8ngmrm4mx4q27an9lsj0p9l79p9snn4g2rxzc8";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests webob ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mozilla-services/tokenlib";
|
|
description = "Generic support library for signed-token-based auth schemes";
|
|
license = licenses.mpl20;
|
|
};
|
|
|
|
}
|