summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-01-27 13:22:32 +0100
committerGitHub <noreply@github.com>2022-01-27 13:22:32 +0100
commitffce342b55813f7324642940600ef68776325a40 (patch)
tree5f2e2ed2ca86fe01e41d52b299de02b5da630315 /pkgs/development/python-modules
parentb5b4ceedf4da8eb66c186742cbfdfb7b40000879 (diff)
parent669236053e5e3447bab7da236fc5fb3770e0768a (diff)
downloadnixpkgs-ffce342b55813f7324642940600ef68776325a40.tar
nixpkgs-ffce342b55813f7324642940600ef68776325a40.tar.gz
nixpkgs-ffce342b55813f7324642940600ef68776325a40.tar.bz2
nixpkgs-ffce342b55813f7324642940600ef68776325a40.tar.lz
nixpkgs-ffce342b55813f7324642940600ef68776325a40.tar.xz
nixpkgs-ffce342b55813f7324642940600ef68776325a40.tar.zst
nixpkgs-ffce342b55813f7324642940600ef68776325a40.zip
Merge pull request #156988 from fabaff/bump-pyeight
python3Packages.pyeight: 0.1.9 -> 0.2.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pyeight/default.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pyeight/default.nix b/pkgs/development/python-modules/pyeight/default.nix
index dc390120f60..f8461271697 100644
--- a/pkgs/development/python-modules/pyeight/default.nix
+++ b/pkgs/development/python-modules/pyeight/default.nix
@@ -3,19 +3,21 @@
 , async-timeout
 , buildPythonPackage
 , fetchFromGitHub
-, isPy3k
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "pyeight";
-  version = "0.1.9";
-  disabled = !isPy3k;
+  version = "0.2.0";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "mezz64";
     repo = "pyEight";
     rev = version;
-    sha256 = "1ybhs09wyzzaryghd6ijxhajp3677x63c4qzqsgln1mmxhj8wm5k";
+    sha256 = "sha256-ERilZWroFaBCYjTfU7W0vegJaGibmJYVcgt0z84TPEI=";
   };
 
   propagatedBuildInputs = [
@@ -23,9 +25,12 @@ buildPythonPackage rec {
     async-timeout
   ];
 
-  # Project has no tests
+  # Module has no tests
   doCheck = false;
-  pythonImportsCheck = [ "pyeight" ];
+
+  pythonImportsCheck = [
+    "pyeight"
+  ];
 
   meta = with lib; {
     description = "Python library to interface with the Eight Sleep API";