Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 642 B view raw
1{ lib 2, buildPythonPackage 3, pythonOlder 4, fetchPypi 5, setuptools 6}: 7 8buildPythonPackage rec { 9 pname = "merge3"; 10 version = "0.0.13"; 11 12 format = "pyproject"; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "8abda1d2d49776323d23d09bfdd80d943a57d43d28d6152ffd2c87956a9b6b54"; 19 }; 20 21 nativeBuildInputs = [ 22 setuptools 23 ]; 24 25 pythonImportsCheck = [ 26 "merge3" 27 ]; 28 29 meta = with lib; { 30 description = "Python implementation of 3-way merge"; 31 homepage = "https://github.com/breezy-team/merge3"; 32 license = licenses.gpl2Plus; 33 maintainers = with maintainers; [ marsam ]; 34 }; 35}