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