Merge pull request #39285 from florianjacob/synapse
matrix-synapse: 0.27.2 -> 0.27.4
This commit is contained in:
commit
304c3ebc6d
23
pkgs/development/python-modules/canonicaljson/default.nix
Normal file
23
pkgs/development/python-modules/canonicaljson/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, frozendict, simplejson, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "canonicaljson";
|
||||
version = "1.1.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1q50zk9a0r7kd56rdf9cgyxxj7vy54j96sgh8vc8jhmsvdv8dzh6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
frozendict simplejson six
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/matrix-org/python-canonicaljson;
|
||||
description = "Encodes objects and arrays as RFC 7159 JSON.";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
20
pkgs/development/python-modules/frozendict/default.nix
Normal file
20
pkgs/development/python-modules/frozendict/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "frozendict";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0ibf1wipidz57giy53dh7mh68f2hz38x8f4wdq88mvxj5pr7jhbp";
|
||||
};
|
||||
|
||||
# frozendict does not come with tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/slezica/python-frozendict;
|
||||
description = "An immutable dictionary";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -26,13 +26,13 @@ let
|
||||
};
|
||||
in pythonPackages.buildPythonApplication rec {
|
||||
name = "matrix-synapse-${version}";
|
||||
version = "0.27.2";
|
||||
version = "0.27.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matrix-org";
|
||||
repo = "synapse";
|
||||
rev = "v${version}";
|
||||
sha256 = "00hcjs5hbayamckcsfd92s7f3da9jv5nm5ygvwinyc7ml7gn66i3";
|
||||
sha256 = "051bwr4vz8mwglh1m9rqlljbn8g3alvd52f09ff887nsi6z3jc17";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
@ -2561,20 +2561,7 @@ in {
|
||||
|
||||
fritzconnection = callPackage ../development/python-modules/fritzconnection { };
|
||||
|
||||
frozendict = buildPythonPackage rec {
|
||||
name = "frozendict-0.5";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/f/frozendict/${name}.tar.gz";
|
||||
sha256 = "0m4kg6hbadvf99if78nx01q7qnbyhdw3x4znl5dasgciyi54432n";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = https://github.com/slezica/python-frozendict;
|
||||
description = "An immutable dictionary";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
};
|
||||
frozendict = callPackage ../development/python-modules/frozendict { };
|
||||
|
||||
ftputil = callPackage ../development/python-modules/ftputil { };
|
||||
|
||||
@ -16650,20 +16637,7 @@ EOF
|
||||
};
|
||||
};
|
||||
|
||||
canonicaljson = buildPythonPackage rec {
|
||||
name = "canonicaljson-${version}";
|
||||
version = "1.0.0";
|
||||
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://github.com/matrix-org/python-canonicaljson.git";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "0r82zlip93y169ijkn8xpbp0yr22mf92pni6dw420vb53l27sprq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [
|
||||
frozendict simplejson
|
||||
];
|
||||
};
|
||||
canonicaljson = callPackage ../development/python-modules/canonicaljson { };
|
||||
|
||||
daemonize = buildPythonPackage rec {
|
||||
name = "daemonize-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user