Unverified Commit 994aab59 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #166934 from r-ryantm/auto-update/python3.10-dotmap

python310Packages.dotmap: 1.3.26 -> 1.3.27
parents fa66d42a 6c5fc227
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -2,24 +2,32 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "dotmap";
  version = "1.3.26";
  version = "1.3.27";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "cc87300f3a61d70f2bd18103ea2747dea846a2381a8321f43ce65cbd7afdfe3d";
    hash = "sha256-gHCQIN8CIeF8TgHWeQu8GCRxK1aQFJJ/d7jZurxxMik=";
  };

  checkInputs = [
    pytestCheckHook
  ];

  pytestFlagsArray = [ "dotmap/test.py" ];
  pytestFlagsArray = [
    "dotmap/test.py"
  ];

  pythonImportsCheck = [ "dotmap" ];
  pythonImportsCheck = [
    "dotmap"
  ];

  meta = with lib; {
    description = "Python for dot-access dictionaries";