summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-02 11:15:37 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-02 11:15:37 +0200
commit51582a99a90f648286f02345eedc7e8ff2b94b03 (patch)
tree667635423b6b5a86622003627952128a6fb9c413 /pkgs
parentf75e2a648c76976c8b2d5e9e147a1eaa0a84f3d8 (diff)
downloadnixpkgs-51582a99a90f648286f02345eedc7e8ff2b94b03.tar
nixpkgs-51582a99a90f648286f02345eedc7e8ff2b94b03.tar.gz
nixpkgs-51582a99a90f648286f02345eedc7e8ff2b94b03.tar.bz2
nixpkgs-51582a99a90f648286f02345eedc7e8ff2b94b03.tar.lz
nixpkgs-51582a99a90f648286f02345eedc7e8ff2b94b03.tar.xz
nixpkgs-51582a99a90f648286f02345eedc7e8ff2b94b03.tar.zst
nixpkgs-51582a99a90f648286f02345eedc7e8ff2b94b03.zip
python3Packages.pytile: 5.2.1 -> 5.2.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pytile/default.nix21
1 files changed, 13 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/pytile/default.nix b/pkgs/development/python-modules/pytile/default.nix
index 0d269522e1a..cf445fd9681 100644
--- a/pkgs/development/python-modules/pytile/default.nix
+++ b/pkgs/development/python-modules/pytile/default.nix
@@ -8,23 +8,25 @@
 , pytest-aiohttp
 , pytest-asyncio
 , pytestCheckHook
-, pythonAtLeast
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "pytile";
-  version = "5.2.1";
+  version = "5.2.2";
+  format = "pyproject";
+  disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "bachya";
     repo = pname;
     rev = version;
-    sha256 = "0d63xga4gjlfl9fzv3i4j605rrx2qgbzam6cl609ny96s8q8h1px";
+    sha256 = "sha256-oVtTR5zucYvnaPO0i4sEBBU4nafq7GUfx3kPdSvptDo=";
   };
 
-  format = "pyproject";
-
-  nativeBuildInputs = [ poetry-core ];
+  nativeBuildInputs = [
+    poetry-core
+  ];
 
   propagatedBuildInputs = [
     aiohttp
@@ -38,8 +40,11 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  # Ignore the examples as they are prefixed with test_
-  pytestFlagsArray = [ "--ignore examples/" ];
+  disabledTestPaths = [
+    # Ignore the examples as they are prefixed with test_
+    "examples/"
+  ];
+
   pythonImportsCheck = [ "pytile" ];
 
   __darwinAllowLocalNetworking = true;