3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #144515 from fabaff/bump-millheater

python3Packages.millheater: 0.8.0 -> 0.8.1
This commit is contained in:
Fabian Affolter 2021-11-06 00:45:29 +01:00 committed by GitHub
commit 3e3788a8fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 7 deletions

View file

@ -1,4 +1,3 @@
{ lib
, aiohttp
, async-timeout
@ -10,14 +9,14 @@
buildPythonPackage rec {
pname = "millheater";
version = "0.8.0";
version = "0.8.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pymill";
rev = version;
sha256 = "sha256-PL9qP6SKE8gsBUdfrPf9Fs+vU/lkpOjmkvq3cWw3Uak=";
sha256 = "0269lhb6y4c13n6krsl2b66ldvzkd26jlax7bbnkvag2iv7g6hzj";
};
propagatedBuildInputs = [
@ -29,7 +28,9 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "mill" ];
pythonImportsCheck = [
"mill"
];
meta = with lib; {
description = "Python library for Mill heater devices";

View file

@ -1,10 +1,13 @@
{ lib, buildPythonPackage, fetchFromGitHub
{ lib
, buildPythonPackage
, fetchFromGitHub
, packaging
, fetchurl, python }:
, python
}:
buildPythonPackage rec {
pname = "vcver";
version = "0.2.10";
version = "0.2.12";
src = fetchFromGitHub {
owner = "toumorokoshi";