nixpkgs/pkgs/development/python-modules/watchgod/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

33 lines
607 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, anyio
}:
buildPythonPackage rec {
pname = "watchgod";
version = "0.8.2";
src = fetchPypi {
inherit pname version;
hash = "sha256-yxH/ZmV777qU2CjjtiLV+3byL72hN281Xz5uUel9lFA=";
};
propagatedBuildInputs = [
anyio
];
# 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 ];
};
}