python3Packages.stdlib-list: init at 0.8.0
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, isPy27
|
||||
, fetchPypi
|
||||
, python
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "stdlib-list";
|
||||
version = "0.8.0";
|
||||
format = "setuptools";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "17vdn4q0sdlndc2fr9svapxx6366hnrhkn0fswp1xmr0jxqh7rd1";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"stdlib_list"
|
||||
];
|
||||
|
||||
# tests see mismatches to our standard library
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A list of Python Standard Libraries";
|
||||
homepage = "https://github.com/jackmaney/python-stdlib-list";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ hexa ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user