Unverified Commit bbb6ecf0 authored by Ben Siraphob's avatar Ben Siraphob Committed by GitHub
Browse files

Merge pull request #131613 from fabaff/bump-aiowinreg

python3Packages.aiowinreg: 0.0.5 -> 0.0.6
parents c28475cc 3c47d946
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -3,23 +3,28 @@
, fetchPypi
, pythonOlder
, winacl
, prompt_toolkit
}:

buildPythonPackage rec {
  pname = "aiowinreg";
  version = "0.0.5";
  version = "0.0.6";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "096663ec3db35fdc7ccc1c2d0d64a11cf64f4baa48955088e42b6a649ce418a5";
    sha256 = "0h0r9xrz1n8y75f2p21f7phqrlpsymyiipmgzr0lj591irzjmjjy";
  };

  propagatedBuildInputs = [ winacl ];
  propagatedBuildInputs = [
    prompt_toolkit
    winacl
  ];

  # Project doesn't have tests
  doCheck = false;

  pythonImportsCheck = [ "aiowinreg" ];

  meta = with lib; {