mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
python3Packages.atomicwrites-homeassistant: init at 1.0.4
This commit is contained in:
parent
5baeaf5d6f
commit
44932cf74c
2 changed files with 37 additions and 0 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue