python.pkgs.sockjs-tornado: move to a separate file
This commit is contained in:
parent
67487427e9
commit
2cad4e61db
20
pkgs/development/python-modules/sockjs-tornado/default.nix
Normal file
20
pkgs/development/python-modules/sockjs-tornado/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchurl, tornado }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "sockjs-tornado-${version}";
|
||||||
|
version = "1.0.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/s/sockjs-tornado/${name}.tar.gz";
|
||||||
|
sha256 = "16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ tornado ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = http://github.com/mrjoes/sockjs-tornado/;
|
||||||
|
description = "SockJS python server implementation on top of Tornado framework";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
};
|
||||||
|
}
|
@ -16224,24 +16224,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
sockjs-tornado = buildPythonPackage rec {
|
sockjs-tornado = callPackage ../development/python-modules/sockjs-tornado { };
|
||||||
name = "sockjs-tornado-${version}";
|
|
||||||
version = "1.0.3";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/s/sockjs-tornado/${name}.tar.gz";
|
|
||||||
sha256 = "16cff40nniqsyvda1pb2j3b4zwmrw7y2g1vqq78lp20xpmhnwwkd";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ tornado ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "http://github.com/mrjoes/sockjs-tornado/";
|
|
||||||
description = "SockJS python server implementation on top of Tornado framework";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ abbradar ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
sorl_thumbnail = buildPythonPackage rec {
|
sorl_thumbnail = buildPythonPackage rec {
|
||||||
name = "sorl-thumbnail-11.12";
|
name = "sorl-thumbnail-11.12";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user