Merge pull request #83720 from bhipple/f/py-application
python27Packages.application: 2.7.0 -> 2.8.0 and fix build; python27Packages.python-otr: mark as broken
This commit is contained in:
commit
61cee883a9
@ -1,21 +1,26 @@
|
|||||||
{ lib, buildPythonPackage, fetchdarcs, zope_interface, isPy3k }:
|
{ lib, buildPythonPackage, fetchFromGitHub, zope_interface, isPy3k }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-application";
|
pname = "python-application";
|
||||||
version = "2.7.0";
|
version = "2.8.0";
|
||||||
disabled = isPy3k;
|
disabled = isPy3k;
|
||||||
|
|
||||||
src = fetchdarcs {
|
src = fetchFromGitHub {
|
||||||
url = "http://devel.ag-projects.com/repositories/${pname}";
|
owner = "AGProjects";
|
||||||
|
repo = pname;
|
||||||
rev = "release-${version}";
|
rev = "release-${version}";
|
||||||
sha256 = "1xpyk2v3naxkjhpyris58dxg1lxbraxgjd6f7w1sah5j0sk7psla";
|
sha256 = "1xd2gbpmx2ghap9cnr1h6sxjai9419bdp3y9qp5lh67977m0qg30";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zope_interface ];
|
buildInputs = [ zope_interface ];
|
||||||
|
|
||||||
|
# No tests upstream to run
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Basic building blocks for python applications";
|
description = "Basic building blocks for python applications";
|
||||||
homepage = https://github.com/AGProjects/python-application;
|
homepage = "https://github.com/AGProjects/python-application";
|
||||||
|
changelog = "https://github.com/AGProjects/python-application/blob/master/ChangeLog";
|
||||||
license = licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -24,10 +24,13 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A pure python implementation of OTR";
|
description = "A pure python implementation of OTR";
|
||||||
homepage = https://github.com/AGProjects/otr;
|
homepage = "https://github.com/AGProjects/python-otr";
|
||||||
license = licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ edwtjo ];
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
|
# The package itself does not support python3, and its transitive
|
||||||
|
# dependencies rely on namespace package support that does not work in
|
||||||
|
# Nix's python2 infra. See #74619 for details.
|
||||||
|
broken = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user