depot/third_party/nixpkgs/pkgs/development/python-modules/matrix-common/default.nix
Default email ca5ab3a501 Project import generated by Copybara.
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
2022-07-14 08:49:19 -04:00

27 lines
610 B
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, attrs
}:
buildPythonPackage rec {
pname = "matrix_common";
version = "1.2.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-qZ3PAqa9lbJKWmGzVIiKKskr8rS4OccnuN2dos36OFM=";
};
propagatedBuildInputs = [ attrs ];
pythonImportsCheck = [ "matrix_common" ];
meta = with lib; {
description = "Common utilities for Synapse, Sydent and Sygnal";
homepage = "https://github.com/matrix-org/matrix-python-common";
license = licenses.asl20;
maintainers = with maintainers; [ sumnerevans ];
};
}