python3Packages.csrmesh: init at 0.10.0
This commit is contained in:
parent
f1d3b04c04
commit
21d41be80b
32
pkgs/development/python-modules/csrmesh/default.nix
Normal file
32
pkgs/development/python-modules/csrmesh/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, bluepy
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pycryptodomex
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "csrmesh";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "03lzam54ypcfvqvikh3gsrivvlidmz1ifdq15xv8c5i3n5b178ag";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
bluepy
|
||||
pycryptodomex
|
||||
];
|
||||
|
||||
# Project has no test
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "csrmesh" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python implementation of the CSRMesh bridge protocol";
|
||||
homepage = "https://github.com/nkaminski/csrmesh";
|
||||
license = with licenses; [ lgpl3Only ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -1489,6 +1489,8 @@ in {
|
||||
|
||||
crytic-compile = callPackage ../development/python-modules/crytic-compile { };
|
||||
|
||||
csrmesh = callPackage ../development/python-modules/csrmesh { };
|
||||
|
||||
csscompressor = callPackage ../development/python-modules/csscompressor { };
|
||||
|
||||
cssmin = callPackage ../development/python-modules/cssmin { };
|
||||
|
Loading…
Reference in New Issue
Block a user