python.pkgs.urwid: fix build
This commit is contained in:
parent
4e3a5957bb
commit
5fde24c20b
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
{ stdenv, buildPythonPackage, fetchPypi, fetchurl }:
|
||||||
|
|
||||||
buildPythonPackage (rec {
|
buildPythonPackage (rec {
|
||||||
pname = "urwid";
|
pname = "urwid";
|
||||||
@ -10,6 +10,13 @@ buildPythonPackage (rec {
|
|||||||
sha256 = "18cnd1wdjcas08x5qwa5ayw6jsfcn33w4d9f7q3s29fy6qzc1kng";
|
sha256 = "18cnd1wdjcas08x5qwa5ayw6jsfcn33w4d9f7q3s29fy6qzc1kng";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchurl {
|
||||||
|
url = https://github.com/urwid/urwid/commit/4b0ed8b6030450e6d99909a7c683e9642e546387.patch;
|
||||||
|
sha256 = "0ygghd6wzjqij5szg61l1dsk8b0yv8bwyj3bgxxj1lj4m17zsy5q";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A full-featured console (xterm et al.) user interface library";
|
description = "A full-featured console (xterm et al.) user interface library";
|
||||||
homepage = http://excess.org/urwid;
|
homepage = http://excess.org/urwid;
|
||||||
|
Loading…
Reference in New Issue
Block a user