mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
16 lines
378 B
Nix
16 lines
378 B
Nix
{ buildPythonPackage, fetchFromGitHub, twisted, python-pam }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "matrix-synapse-pam";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "14mRh4X0r";
|
|
repo = "matrix-synapse-pam";
|
|
rev = "v${version}";
|
|
sha256 = "0jgz49cwiyih5cg3hr4byva04zjnq8aj7rima9874la9fc5sd2wf";
|
|
};
|
|
|
|
propagatedBuildInputs = [ twisted python-pam ];
|
|
}
|