python3.pkgs.watchgod: init at 0.0.7

This commit is contained in:
Robin Gloster 2021-05-09 10:51:20 -05:00
parent 741c201f6b
commit b66421bc00
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF
2 changed files with 29 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };