lol

python310Packages.smpplib: pythonImportsCheck

authored by

Fabian Affolter and committed by
GitHub
f08f8825 56a016bd

+21 -4
+21 -4
pkgs/development/python-modules/smpplib/default.nix
··· 1 - { buildPythonPackage, fetchPypi, lib, python, six, mock, pytestCheckHook }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , python 5 + , six 6 + , mock 7 + , pytestCheckHook 8 + }: 2 9 3 10 buildPythonPackage rec { 4 11 pname = "smpplib"; ··· 9 16 sha256 = "c0b01947b47e404f42ccb59e906b6e4eb507963c971d59b44350db0f29c76166"; 10 17 }; 11 18 12 - propagatedBuildInputs = [ six ]; 13 - checkInputs = [ mock pytestCheckHook ]; 19 + propagatedBuildInputs = [ 20 + six 21 + ]; 22 + 23 + checkInputs = [ 24 + mock 25 + pytestCheckHook 26 + ]; 14 27 15 28 postInstall = '' 16 29 rm -rf $out/${python.sitePackages}/tests 17 30 ''; 18 31 32 + pythonImportsCheck = [ 33 + "smpplib" 34 + ]; 35 + 19 36 meta = with lib; { 20 37 description = "SMPP library for Python"; 21 38 homepage = "https://github.com/python-smpplib/python-smpplib"; 22 39 license = licenses.lgpl3Plus; 23 - maintainers = [ maintainers.globin ]; 40 + maintainers = with maintainers; [ globin ]; 24 41 }; 25 42 }