3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #68245 from jonringer/bump-grabserial

grabserial: 1.9.3 -> 1.9.8
This commit is contained in:
Marek Mahut 2019-09-09 09:02:43 +02:00 committed by GitHub
commit c55ff13fea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +1,23 @@
{ stdenv, fetchgit, pythonPackages }: { lib, fetchFromGitHub, pythonPackages }:
pythonPackages.buildPythonApplication { pythonPackages.buildPythonApplication rec {
pname = "grabserial";
version = "1.9.8";
name = "grabserial-1.9.3"; src = fetchFromGitHub {
namePrefix = ""; owner = "tbird20d";
repo = "grabserial";
src = fetchgit { rev = "v${version}";
url = https://github.com/tbird20d/grabserial.git; sha256 = "1xmy3js4hzsxlkxc172hkjzxsc34mmg3vfz61h24c7svmfzyhbd5";
rev = "7cbf104b61ffdf68e6782a8e885050565399a014";
sha256 = "043r2p5jw0ymx8ka1d39q1ap39i7sliq5f4w3yr1n53lzshjmc5g";
}; };
propagatedBuildInputs = [ pythonPackages.pyserial ]; propagatedBuildInputs = [ pythonPackages.pyserial ];
meta = { meta = with lib; {
description = "Python based serial dump and timing program"; description = "Python based serial dump and timing program";
homepage = https://github.com/tbird20d/grabserial; homepage = "https://github.com/tbird20d/grabserial";
license = stdenv.lib.licenses.gpl2; license = licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ vmandela ]; maintainers = with maintainers; [ vmandela ];
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }