1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "extras";
9 version = "1.0.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e";
15 };
16
17 # error: invalid command 'test'
18 doCheck = false;
19
20 meta = {
21 description = "Useful extra bits for Python - things that should be in the standard library";
22 homepage = "https://github.com/testing-cabal/extras";
23 license = lib.licenses.mit;
24 };
25}