nixpkgs/pkgs/development/python-modules/python-pam/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

50 lines
948 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pam
, six
, toml
}:
buildPythonPackage rec {
pname = "python-pam";
version = "2.0.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "FirefighterBlu3";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-MR9LYXtkbltAmn7yoyyKZn4yMHyh3rj/i/pA8nJy2xU=";
};
postPatch = ''
substituteInPlace src/pam/__internals.py \
--replace 'find_library("pam")' '"${pam}/lib/libpam.so"' \
--replace 'find_library("pam_misc")' '"${pam}/lib/libpam_misc.so"'
'';
nativeBuildInputs = [
setuptools
];
buildInputs = [
pam
];
propagatedBuildInputs = [
six
toml
];
pythonImportsCheck = [ "pam" ];
meta = with lib; {
description = "Python pam module";
homepage = "https://github.com/FirefighterBlu3/python-pam";
license = licenses.mit;
maintainers = with maintainers; [ abbradar mkg20001 ];
};
}