python3Packages.atomicwrites-homeassistant: init at 1.0.4

This commit is contained in:
Martin Weinelt 2022-07-09 01:51:12 +02:00
parent 5baeaf5d6f
commit 44932cf74c
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
let
pname = "atomicwrites-homeassistant";
version = "1.4.1";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-JWpnIQbxZ0VEUijZZiQLd7VfRqCW0gMFkBpXql0fTC8=";
};
pythonImportsCheck = [
"atomicwrites"
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Atomic file writes";
homepage = "https://pypi.org/project/atomicwrites-homeassistant/";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -771,6 +771,8 @@ in {
atomicwrites = callPackage ../development/python-modules/atomicwrites { };
atomicwrites-homeassistant = callPackage ../development/python-modules/atomicwrites-homeassistant { };
atomman = callPackage ../development/python-modules/atomman { };
atpublic = callPackage ../development/python-modules/atpublic { };