Merge pull request #112084 from fabaff/bump-pymyq

This commit is contained in:
Sandro 2021-02-08 17:58:13 +01:00 committed by GitHub
commit bad9c52b5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 6 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pkce";
version = "1.0.2";
src = fetchFromGitHub {
owner = "RomeoDespres";
repo = pname;
rev = version;
sha256 = "15fzpp3b5qmj27hpgnwkzjwllgwwdfccizz8ydmliakm2hdr1xpn";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pkce" ];
meta = with lib; {
description = "Python module to work with PKCE";
homepage = "https://github.com/RomeoDespres/pkce";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1,26 +1,26 @@
{ lib
, aiodns
, aiohttp
, async-timeout
, beautifulsoup4
, buildPythonPackage
, fetchFromGitHub
, pkce
}:
buildPythonPackage rec {
pname = "pymyq";
version = "2.0.14";
version = "3.0.0";
src = fetchFromGitHub {
owner = "arraylabs";
repo = pname;
rev = "v${version}";
sha256 = "18825b9c6qk4zcvva79hpg6098z4zqxyapnqmjsli23npw0zh67w";
sha256 = "sha256-uCXgJxMy5gZQBvhHnmfev/rfJXOjhLqZdOrn8SetUT0=";
};
propagatedBuildInputs = [
aiodns
aiohttp
async-timeout
beautifulsoup4
pkce
];
# Project has no tests

View file

@ -4892,6 +4892,8 @@ in {
pixelmatch = callPackage ../development/python-modules/pixelmatch { };
pkce = callPackage ../development/python-modules/pkce { };
pkgconfig = callPackage ../development/python-modules/pkgconfig { inherit (pkgs) pkg-config; };
pkginfo = callPackage ../development/python-modules/pkginfo { };