Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / backports_abc / default.nix
blobd67117613d7fab586e90f8923483ab489450b1f6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 }:
7 buildPythonPackage rec {
8   pname = "backports_abc";
9   version = "0.5";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "033be54514a03e255df75c5aee8f9e672f663f93abb723444caec8fe43437bde";
14   };
16   checkPhase = ''
17     ${python.interpreter} -m unittest discover
18   '';
20   meta = {
21     homepage = "https://github.com/cython/backports_abc";
22     license = lib.licenses.psfl;
23     description = "A backport of recent additions to the 'collections.abc' module";
24   };