Skip to content

Commit

Permalink
python310Packages.aioprocessing: 2.0.0 -> 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Sep 21, 2022
1 parent 2f8b8bc commit 7afd5b2
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions pkgs/development/python-modules/aioprocessing/default.nix
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, pythonOlder
}:

buildPythonPackage rec {
pname = "aioprocessing";
version = "2.0.0";
version = "2.0.1";
format = "flit";

disabled = pythonOlder "3.5";

src = fetchPypi {
inherit pname version;
sha256 = "469dfb746e8c4e0c727ba135cfabf9e034c554f6a73c27f908bfe3625dd74b9e";
hash = "sha256-/gHHsaOMeBaGEdMEDnPZMDbDt8imSdY23J7Xo7ybG6I=";
};

nativeBuildInputs = [
flit-core
];

# Tests aren't included in pypi package
doCheck = false;

pythonImportsCheck = [ "aioprocessing" ];
pythonImportsCheck = [
"aioprocessing"
];

meta = {
description = "A library that integrates the multiprocessing module with asyncio";
meta = with lib; {
description = "Library that integrates the multiprocessing module with asyncio";
homepage = "https://github.com/dano/aioprocessing";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ uskudnik ];
license = licenses.bsd2;
maintainers = with maintainers; [ uskudnik ];
};
}

0 comments on commit 7afd5b2

Please sign in to comment.