mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 23:36:39 +01:00
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>
27 lines
592 B
Nix
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 = [ ];
|
|
};
|
|
}
|