ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cmdline / default.nix
blob71273ed1a226dbcdedb87318aeb67d6743b12672
1 { lib, buildPythonPackage, fetchPypi, pyyaml }:
3 buildPythonPackage rec {
4   pname = "cmdline";
5   version = "0.2.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "7cf6af53549892b2218c2f56a199dff54a733be5c5515c0fd626812070b0a86a";
10   };
12   # No tests, https://github.com/rca/cmdline/issues/1
13   doCheck = false;
14   propagatedBuildInputs = [ pyyaml ];
16   meta = with lib; {
17     description = "Utilities for consistent command line tools";
18     homepage = "https://github.com/rca/cmdline";
19     license = licenses.asl20;
20   };