python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / git-repo-updater / default.nix
blobd78972aa07bdfadea9991fc9c22a117cba46b0d8
1 { lib, buildPythonApplication, fetchPypi
2 , colorama, GitPython }:
4 buildPythonApplication rec {
5   pname = "gitup";
6   version = "0.5.1";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1pa612rcc94nc461zs9sag9p46sycc214622b06gdn35rmwp0y2g";
11   };
13   propagatedBuildInputs = [ colorama GitPython ];
15   # no tests
16   doCheck = false;
18   meta = with lib; {
19     description = "Easily update multiple Git repositories at once";
20     homepage = "https://github.com/earwig/git-repo-updater";
21     license = licenses.mit;
22     maintainers = [ maintainers.bdesham ];
23     platforms = platforms.all;
24   };