1{ lib
2, buildPythonPackage
3, fetchPypi
4, unittestCheckHook
5}:
6
7buildPythonPackage rec {
8 pname = "backports_abc";
9 version = "0.5";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "033be54514a03e255df75c5aee8f9e672f663f93abb723444caec8fe43437bde";
14 };
15
16 checkInputs = [ unittestCheckHook ];
17
18 meta = {
19 homepage = "https://github.com/cython/backports_abc";
20 license = lib.licenses.psfl;
21 description = "A backport of recent additions to the 'collections.abc' module";
22 };
23}