mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-30 05:55:40 +00:00
30 lines
611 B
Nix
30 lines
611 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "interruptingcow";
|
|
version = "0.8";
|
|
pyproject = true;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchPypi {
|
|
inherit (finalAttrs) pname version;
|
|
sha256 = "3e8cd5058b651e625702cba53e3b1fb76d7a5ec07ab69c52a167a9f784e3306c";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
meta = {
|
|
description = "Watchdog that interrupts long running code";
|
|
homepage = "https://bitbucket.org/evzijst/interruptingcow";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ benley ];
|
|
};
|
|
})
|