
If a Python package does not come with either `format` or `pyproject` we consider it a setuptools build, that calls `setup.py` directly, which is deprecated. This change, as a first step, migrates a large chunk of these packages to set setuptools as their explicit format This is so we can unify the problem space for the next step of the migration.
35 lines
773 B
Nix
35 lines
773 B
Nix
{
|
|
buildPythonPackage,
|
|
cachetools,
|
|
fetchFromGitHub,
|
|
isPy27,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "coapthon3";
|
|
version = "1.0.2";
|
|
format = "setuptools";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Tanganelli";
|
|
repo = "CoAPthon3";
|
|
rev = version;
|
|
hash = "sha256-9QApoPUu3XFZY/lgjAsf5r2StFiRtUd1UXWDrzYUh6w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cachetools ];
|
|
|
|
# tests take in the order of 10 minutes to execute and sometimes hang forever on tear-down
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "coapthon" ];
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Python3 library to the CoAP protocol compliant with the RFC";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ urbas ];
|
|
};
|
|
}
|