summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-03-08 14:40:48 +0100
committerGitHub <noreply@github.com>2022-03-08 14:40:48 +0100
commit49bbd59eaf612ba286d4cc9462aa00666b144daa (patch)
treece7ff7d0179aeb1644825d818d1f54cd148ff46c
parent753aa36feab0c135b2a1d78e2f2f0d7e8e1eb0ca (diff)
parentfab9066b3df18e4ea77c3a519e9f09640c0f3319 (diff)
downloadnixpkgs-49bbd59eaf612ba286d4cc9462aa00666b144daa.tar
nixpkgs-49bbd59eaf612ba286d4cc9462aa00666b144daa.tar.gz
nixpkgs-49bbd59eaf612ba286d4cc9462aa00666b144daa.tar.bz2
nixpkgs-49bbd59eaf612ba286d4cc9462aa00666b144daa.tar.lz
nixpkgs-49bbd59eaf612ba286d4cc9462aa00666b144daa.tar.xz
nixpkgs-49bbd59eaf612ba286d4cc9462aa00666b144daa.tar.zst
nixpkgs-49bbd59eaf612ba286d4cc9462aa00666b144daa.zip
Merge pull request #163246 from r-ryantm/auto-update/python3.10-versioneer
python310Packages.versioneer: 0.21 -> 0.22
-rw-r--r--pkgs/development/python-modules/versioneer/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/versioneer/default.nix b/pkgs/development/python-modules/versioneer/default.nix
index 868ad5fed96..cbc03ea0d04 100644
--- a/pkgs/development/python-modules/versioneer/default.nix
+++ b/pkgs/development/python-modules/versioneer/default.nix
@@ -6,19 +6,23 @@
 
 buildPythonPackage rec {
   pname = "versioneer";
-  version = "0.21";
-  disabled = pythonOlder "3.6";
+  version = "0.22";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "64f2dbcbbed15f9a6da2b85f643997db729cf496cafdb97670fb2fa73a7d8e20";
+    hash = "sha256-nw6aLLXvUhy/0QTUOiCN2RJN+0rM+nLWlODQQwoBQrw=";
   };
 
   # Couldn't get tests to work because, for instance, they used virtualenv and
   # pip.
   doCheck = false;
 
-  pythonImportsCheck = [ "versioneer" ];
+  pythonImportsCheck = [
+    "versioneer"
+  ];
 
   meta = with lib; {
     description = "Version-string management for VCS-controlled trees";