Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 24 lines 535 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 pname = "hg-evolve"; 9 version = "10.3.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "03xwnadpvgna70n6pfxb7xdrszppdqrx5qmkbr1v0jzbh5rnzi6b"; 14 }; 15 16 doCheck = false; 17 18 meta = with lib; { 19 description = "Enables the changeset evolution feature of Mercurial core"; 20 homepage = "https://www.mercurial-scm.org/doc/evolution/"; 21 maintainers = with maintainers; [ xavierzwirtz lukegb ]; 22 license = licenses.gpl2Plus; 23 }; 24}