Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b690ceff5dd2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eacd24aed23b
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 8, 2021

  1. python3Packages.pykerberos: 1.2.1 -> 1.2.3.dev0

    rmcgibbo authored and Jonathan Ringer committed May 8, 2021
    Copy the full SHA
    eacd24a View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/development/python-modules/pykerberos/default.nix
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/pykerberos/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "pykerberos";
version = "1.2.1";
version = "1.2.3.dev0";

src = fetchPypi {
inherit pname version;
sha256 = "0v47p840myqgc7hr4lir72xshcfpa0w8j9n077h3njpqyn6wlbag";
sha256 = "17zjiw6rqgfic32px86qls1i3z7anp15dgb3sprbdvywy98alryn";
};

nativeBuildInputs = [ krb5 ]; # for krb5-config
@@ -15,6 +15,7 @@ buildPythonPackage rec {

# there are no tests
doCheck = false;
pythonImportsCheck = [ "kerberos" ];

meta = with lib; {
description = "High-level interface to Kerberos";