Files
nixpkgs/pkgs/development/python-modules/msrplib/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
874 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
unstableGitUpdater,
}:
buildPythonPackage {
pname = "msrplib";
version = "0.20.1-unstable-2021-06-01";
pyproject = true;
src = fetchFromGitHub {
owner = "AGProjects";
repo = "python3-msrplib";
# no tag pushed for version 0.21.1 release, and commit title is wrong
rev = "5bd069620d436d5a65e1c369e43cc6b88857fb9e";
hash = "sha256-z0gF/oQW/h3qiCL1cFWBPK7JYzLCNAD7/dg7HfY4rig=";
};
build-system = [
setuptools
];
# only test requires networking
doCheck = false;
pythonImportsCheck = [ "msrplib" ];
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "MSRP (RFC4975) client library";
homepage = "https://github.com/AGProjects/python3-msrplib";
license = lib.licenses.lgpl21Plus;
teams = [
lib.teams.ngi
];
};
}