mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
27 lines
716 B
Nix
27 lines
716 B
Nix
{ lib, buildPythonPackage, fetchPypi, argparse-addons, humanfriendly, pyelftools }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bincopy";
|
|
version = "17.14.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-sx+0sBbY2P6vQt38e2M72GLU8tRwKOMpVWNNNtEXx0k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
argparse-addons
|
|
humanfriendly
|
|
pyelftools
|
|
];
|
|
|
|
pythonImportsCheck = [ "bincopy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Mangling of various file formats that conveys binary information (Motorola S-Record, Intel HEX, TI-TXT, ELF and binary files)";
|
|
homepage = "https://github.com/eerimoq/bincopy";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ frogamic sbruder ];
|
|
};
|
|
}
|