nixpkgs/pkgs/development/python-modules/multitasking/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

27 lines
592 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "multitasking";
version = "0.0.12";
format = "setuptools";
# GitHub source releases aren't tagged
src = fetchPypi {
inherit pname version;
hash = "sha256-L7ovqO2MS4XiJ8XdfcQcfWWN47byR5JzFhdaVzSbhNE=";
};
doCheck = false; # No tests included
pythonImportsCheck = [ "multitasking" ];
meta = {
description = "Non-blocking Python methods using decorators";
homepage = "https://github.com/ranaroussi/multitasking";
license = lib.licenses.asl20;
maintainers = [ ];
};
}