4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
28 lines
828 B
Nix
28 lines
828 B
Nix
{ lib, stdenv, fetchFromGitHub, buildPythonPackage, requests, pykerberos, mock }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "requests-kerberos";
|
|
version = "0.12.0";
|
|
|
|
# tests are not present in the PyPI version
|
|
src = fetchFromGitHub {
|
|
owner = "requests";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1qw96aw84nljh9cip372mfv50p1yyirfgigavvavgpc3c5g278s6";
|
|
};
|
|
|
|
checkInputs = [ mock ];
|
|
propagatedBuildInputs = [ requests pykerberos ];
|
|
|
|
# they have a setup.py which mentions a test suite that doesn't exist...
|
|
patches = [ ./fix_setup.patch ];
|
|
|
|
meta = with lib; {
|
|
description = "An authentication handler for using Kerberos with Python Requests.";
|
|
homepage = "https://github.com/requests/requests-kerberos";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ catern ];
|
|
};
|
|
}
|