02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
21 lines
528 B
Nix
21 lines
528 B
Nix
{ lib, buildPythonPackage, fetchPypi, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "doctest-ignore-unicode";
|
|
version = "0.1.2";
|
|
format = "setuptools";
|
|
|
|
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";
|
|
};
|
|
}
|