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/unittest-data-provider/default.nix

21 lines
495 B

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
version = "1.0.1";
pname = "unittest-data-provider";
src = fetchPypi {
inherit pname version;
sha256 = "1gn2ka4vqpayx4cpbp8712agqjh3wdpk9smdxnp709ccc2v7zg46";
};
meta = with lib; {
description = "PHPUnit-like @dataprovider decorator for unittest";
homepage = "https://github.com/yourlabs/unittest-data-provider";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}