1{ lib, buildPythonPackage, fetchPypi, nose }:
2
3buildPythonPackage rec {
4 pname = "doctest-ignore-unicode";
5 version = "0.1.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1m9aa4qnyj21lbq4sbvmv1vcz7zksss4rz37ddf2hxv4hk8b547w";
10 };
11
12 propagatedBuildInputs = [ nose ];
13
14 meta = with lib; {
15 description = "Add flag to ignore unicode literal prefixes in doctests";
16 license = with licenses; [ asl20 ];
17 homepage = "https://github.com/gnublade/doctest-ignore-unicode";
18 };
19}