about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/doctest-ignore-unicode/default.nix
blob: 533dbed29b3425a45476aabdc8781f5cb4b778a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonPackage, fetchPypi, nose }:

buildPythonPackage rec {
  pname = "doctest-ignore-unicode";
  version = "0.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1m9aa4qnyj21lbq4sbvmv1vcz7zksss4rz37ddf2hxv4hk8b547w";
  };

  propagatedBuildInputs = [ nose ];

  meta = with lib; {
    description = "Add flag to ignore unicode literal prefixes in doctests";
    license = with licenses; [ asl20 ];
    homepage = "https://github.com/gnublade/doctest-ignore-unicode";
  };
}