python3.pkgs.watchgod: init at 0.0.7
This commit is contained in:
parent
741c201f6b
commit
b66421bc00
27
pkgs/development/python-modules/watchgod/default.nix
Normal file
27
pkgs/development/python-modules/watchgod/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "watchgod";
|
||||
version = "0.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0aagm0n5fkpzdsfgl0r21gkz5qaicgq3f4rqz2fdvsgbn1i0s528";
|
||||
};
|
||||
|
||||
# no tests in release
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "watchgod" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple, modern file watching and code reload in python";
|
||||
homepage = "https://github.com/samuelcolvin/watchgod";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ globin ];
|
||||
};
|
||||
|
||||
}
|
@ -8592,6 +8592,8 @@ in {
|
||||
inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices;
|
||||
};
|
||||
|
||||
watchgod = callPackage ../development/python-modules/watchgod { };
|
||||
|
||||
waterfurnace = callPackage ../development/python-modules/waterfurnace { };
|
||||
|
||||
WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { };
|
||||
|
Loading…
Reference in New Issue
Block a user