nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 27 lines 610 B view raw
1{ stdenv 2, lib 3, buildPythonPackage 4, fetchPypi 5, attrs 6}: 7 8buildPythonPackage rec { 9 pname = "matrix_common"; 10 version = "1.1.0"; 11 format = "pyproject"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "sha256-qCOHSK/Cs3B5gYNn/tUVbzVXcbB8j/ChdZNPR+D/MnY="; 16 }; 17 18 propagatedBuildInputs = [ attrs ]; 19 pythonImportsCheck = [ "matrix_common" ]; 20 21 meta = with lib; { 22 description = "Common utilities for Synapse, Sydent and Sygnal"; 23 homepage = "https://github.com/matrix-org/matrix-python-common"; 24 license = licenses.asl20; 25 maintainers = with maintainers; [ sumnerevans ]; 26 }; 27}