lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.atomicwrites-homeassistant: init at 1.0.4

+37
+35
pkgs/development/python-modules/atomicwrites-homeassistant/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + }: 6 + 7 + let 8 + pname = "atomicwrites-homeassistant"; 9 + version = "1.4.1"; 10 + in 11 + 12 + buildPythonPackage { 13 + inherit pname version; 14 + format = "setuptools"; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + hash = "sha256-JWpnIQbxZ0VEUijZZiQLd7VfRqCW0gMFkBpXql0fTC8="; 19 + }; 20 + 21 + pythonImportsCheck = [ 22 + "atomicwrites" 23 + ]; 24 + 25 + checkInputs = [ 26 + pytestCheckHook 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Atomic file writes"; 31 + homepage = "https://pypi.org/project/atomicwrites-homeassistant/"; 32 + license = licenses.mit; 33 + maintainers = with maintainers; [ hexa ]; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 771 771 772 772 atomicwrites = callPackage ../development/python-modules/atomicwrites { }; 773 773 774 + atomicwrites-homeassistant = callPackage ../development/python-modules/atomicwrites-homeassistant { }; 775 + 774 776 atomman = callPackage ../development/python-modules/atomman { }; 775 777 776 778 atpublic = callPackage ../development/python-modules/atpublic { };