mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
Merge pull request #68700 from jonringer/fix-pycurl2
pythonPackage.pycurl2: fix build
This commit is contained in:
commit
c04cece602
@ -1,6 +1,4 @@
|
|||||||
{ stdenv
|
{ lib, buildPythonPackage, fetchFromGitHub
|
||||||
, buildPythonPackage
|
|
||||||
, fetchgit
|
|
||||||
, isPy3k
|
, isPy3k
|
||||||
, simplejson
|
, simplejson
|
||||||
, unittest2
|
, unittest2
|
||||||
@ -13,8 +11,9 @@ buildPythonPackage {
|
|||||||
version = "7.20.0";
|
version = "7.20.0";
|
||||||
disabled = isPy3k;
|
disabled = isPy3k;
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/Lispython/pycurl.git";
|
owner = "Lispython";
|
||||||
|
repo = "pycurl";
|
||||||
rev = "0f00109950b883d680bd85dc6e8a9c731a7d0d13";
|
rev = "0f00109950b883d680bd85dc6e8a9c731a7d0d13";
|
||||||
sha256 = "1qmw3cm93kxj94s71a8db9lwv2cxmr2wjv7kp1r8zildwdzhaw7j";
|
sha256 = "1qmw3cm93kxj94s71a8db9lwv2cxmr2wjv7kp1r8zildwdzhaw7j";
|
||||||
};
|
};
|
||||||
@ -22,9 +21,10 @@ buildPythonPackage {
|
|||||||
# error: (6, "Couldn't resolve host 'h.wrttn.me'")
|
# error: (6, "Couldn't resolve host 'h.wrttn.me'")
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
buildInputs = [ pkgs.curl simplejson unittest2 nose ];
|
nativeBuildInputs = [ pkgs.curl.dev ];
|
||||||
|
buildInputs = [ simplejson unittest2 nose ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
homepage = https://pypi.python.org/pypi/pycurl2;
|
homepage = https://pypi.python.org/pypi/pycurl2;
|
||||||
description = "A fork from original PycURL library that no maintained from 7.19.0";
|
description = "A fork from original PycURL library that no maintained from 7.19.0";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
Loading…
Reference in New Issue
Block a user