My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/doctest-ignore-unicode/default.nix

19 lines
503 B

{ 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";
};
}