stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / ansiconv / default.nix
blob4e5a82dc333985aec15db306e1636457270029c2
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytest,
6 }:
8 buildPythonPackage rec {
9   pname = "ansiconv";
10   version = "1.0.0";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "ansible";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "0ljfpl8x069arzginvpi1v6hlaq4x2qpjqj01qds2ylz33scq8r4";
18   };
20   nativeCheckInputs = [ pytest ];
22   meta = with lib; {
23     description = "Module for converting ANSI coded text and converts it to either plain text or HTML";
24     homepage = "https://github.com/ansible/ansiconv";
25     license = licenses.mit;
26     maintainers = with maintainers; [ psyanticy ];
27   };