Tanguy Le Carrour writes: > * gnu/packages/python-xyz.scm (python-robber): New variable. Thanks! As this appears to be a test library, can you move it to python-check.scm? [...] > +(define-public python-robber > + (package > + (name "python-robber") > + (version "1.1.5") > + (source (origin > + (method url-fetch) > + (uri (pypi-uri "robber" version)) > + (sha256 > + (base32 > + "0xp5csgv2g9q38hscml6bc5i1nm4xy5lzqqiimm2drxsf0hw2nq5")))) > + (build-system python-build-system) > + (arguments '(#:tests? #f)) ; no tests There appears to be tests in the upstream repository: https://github.com/vesln/robber.py/tree/master/tests Perhaps we should pull that instead of the PyPI release? Otherwise LGTM.