Merge pull request #310725 from annaleeleaves/python3-gnutls-unbreak
python311Packages.python3-gnutls: unbreak and update 3.1.9 -> 3.1.10
This commit is contained in:
commit
84656ce74c
@ -1,20 +1,22 @@
|
||||
{ lib, fetchFromGitHub, substituteAll, buildPythonPackage, isPy3k, gnutls
|
||||
, twisted, pyopenssl, service-identity }:
|
||||
, twisted, pyopenssl, service-identity, setuptools }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python3-gnutls";
|
||||
version = "3.1.9";
|
||||
format = "setuptools";
|
||||
version = "3.1.10";
|
||||
pyproject = true;
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "AGProjects";
|
||||
repo = "python3-gnutls";
|
||||
rev = "324b78f7cd3d9fe58c89c7f0b2bf94199bd6a6e5"; # version not tagged
|
||||
hash = "sha256-18T8bAHlNERHobsspUFvSC6ulN55nrFFb5aqNwU8T00=";
|
||||
rev = "refs/tags/release-${version}";
|
||||
hash = "sha256-AdFRF3ZlkkAoSm5rvf/09FSYIo7SsZ38sD2joOLyukA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
|
||||
propagatedBuildInputs = [ twisted pyopenssl service-identity ];
|
||||
|
||||
patches = [
|
||||
|
Loading…
Reference in New Issue
Block a user