mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.easywatch: init at 0.0.5
This commit is contained in:
parent
46dd27e025
commit
779e916c3b
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/easywatch/default.nix
Normal file
28
pkgs/development/python-modules/easywatch/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, watchdog
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "easywatch";
|
||||
version = "0.0.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1b40cjigv7s9qj8hxxy6yhwv0320z7qywrigwgkasgh80q0xgphc";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ watchdog ];
|
||||
|
||||
# There are no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Dead-simple way to watch a directory";
|
||||
homepage = https://github.com/Ceasar/easywatch;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fgaz ];
|
||||
};
|
||||
}
|
||||
|
|
@ -2299,6 +2299,8 @@ in {
|
|||
|
||||
dtopt = callPackage ../development/python-modules/dtopt { };
|
||||
|
||||
easywatch = callPackage ../development/python-modules/easywatch { };
|
||||
|
||||
ecdsa = callPackage ../development/python-modules/ecdsa { };
|
||||
|
||||
effect = callPackage ../development/python-modules/effect {};
|
||||
|
|
Loading…
Reference in a new issue