Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 25 lines 556 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, moznetwork 5, mozprocess 6}: 7 8buildPythonPackage rec { 9 pname = "mozdevice"; 10 version = "1.0.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0026241bff3ad10a73fe24eb4f59c1313c94e5950f397b2f6b8cc4e4dfbfdd73"; 15 }; 16 17 propagatedBuildInputs = [ moznetwork mozprocess ]; 18 19 meta = { 20 description = "Mozilla-authored device management"; 21 homepage = https://wiki.mozilla.org/Auto-tools/Projects/Mozbase; 22 license = lib.licenses.mpl20; 23 maintainers = with lib.maintainers; [ raskin ]; 24 }; 25}