python3Packages.pycognito: 2022.12.0 -> 2023.5.0
This commit is contained in:
parent
b0279b8daa
commit
a54cb9801c
1 changed files with 7 additions and 2 deletions
|
@ -15,14 +15,14 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pycognito";
|
pname = "pycognito";
|
||||||
version = "2022.12.0";
|
version = "2023.5.0";
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pvizeli";
|
owner = "pvizeli";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-WepDna9f3Z3dBxWdE6G7nbl3yPK5vMG+7X1rxbZwdjE=";
|
hash = "sha256-2Aqid2bd5BAnWQ+Wtji0zXjLAmSpyJNGqJ0VroGi6lY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -47,6 +47,11 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
pytestFlagsArray = [ "tests.py" ];
|
pytestFlagsArray = [ "tests.py" ];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# requires network access
|
||||||
|
"test_srp_requests_http_auth"
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "pycognito" ];
|
pythonImportsCheck = [ "pycognito" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue