pythonPackages.mozsvc: 0.8 -> 0.10
This commit is contained in:
parent
11cf7d6e1f
commit
8119e08e34
|
@ -1,7 +1,6 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchgit
|
, fetchFromGitHub
|
||||||
, fetchurl
|
|
||||||
, pyramid
|
, pyramid
|
||||||
, simplejson
|
, simplejson
|
||||||
, konfig
|
, konfig
|
||||||
|
@ -9,26 +8,22 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "mozsvc";
|
pname = "mozsvc";
|
||||||
version = "0.8";
|
version = "0.10";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/mozilla-services/mozservices.git;
|
owner = "mozilla-services";
|
||||||
rev = "refs/tags/${version}";
|
repo = "mozservices";
|
||||||
sha256 = "1zci2ikk83mf7va88c83dr6snfh4ddjqw0lsg3y29qk5nxf80vx2";
|
rev = version;
|
||||||
|
sha256 = "0a0558g8j55pd1nnhnnf3k377jv6cah8lxb24v98rq8kxr5960cg";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = stdenv.lib.singleton (fetchurl {
|
doCheck = false; # too many dependencies and conflicting versions; I (nadrieril) gave up
|
||||||
url = https://github.com/nbp/mozservices/commit/f86c0b0b870cd8f80ce90accde9e16ecb2e88863.diff;
|
|
||||||
sha256 = "1lnghx821f6dqp3pa382ka07cncdz7hq0mkrh44d0q3grvrlrp9n";
|
|
||||||
});
|
|
||||||
|
|
||||||
doCheck = false; # lazy packager
|
|
||||||
propagatedBuildInputs = [ pyramid simplejson konfig ];
|
propagatedBuildInputs = [ pyramid simplejson konfig ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/mozilla-services/mozservices;
|
homepage = https://github.com/mozilla-services/mozservices;
|
||||||
description = "Various utilities for Mozilla apps";
|
description = "Various utilities for Mozilla apps";
|
||||||
license = licenses.mpl20;
|
license = licenses.mpl20;
|
||||||
|
maintainers = with maintainers; [ nadrieril ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue